[PATCH 08/13] drivers/staging/rtl8192e: Hoist assign from if

Greg KH greg at kroah.com
Wed Apr 28 18:26:29 UTC 2010


On Wed, Mar 24, 2010 at 10:17:02PM -0700, Joe Perches wrote:
> --- a/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c
> +++ b/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c
> @@ -1933,7 +1933,8 @@ ieee80211_rx_auth_rq(struct ieee80211_device *ieee, struct sk_buff *skb)
>  	//IEEE80211DMESG("Rx probe");
>  	ieee->softmac_stats.rx_auth_rq++;
>  
> -	if ((status = auth_rq_parse(skb, dest))!= -1){
> +	status = auth_rq_parse(skb, dest);
> +	if (status!= -1) {

Same problem...



More information about the devel mailing list