Staging: rtl8192su: Hoist assign from if

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Joe Perches 2010-03-24 22:17:03 -07:00 коммит произвёл Greg Kroah-Hartman
Родитель d6d42dfbdf
Коммит 810ba6a25b
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1691,7 +1691,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) {
ieee80211_resp_to_auth(ieee, status, dest);
}
//DMESG("Dest is "MACSTR, MAC2STR(dest));