Initial INC MR3 commit with EVO/BRAVO included and majority of the compile warnings ...
/net/wireless/mlme.c
blob:0d862482def8e1685549d083263a8fab6187950a -> blob:ec9a9d40a6c667ce3b8f5f4ed168508c98d457eb
--- net/wireless/mlme.c
+++ net/wireless/mlme.c
@@ -43,10 +43,10 @@ void cfg80211_send_rx_auth(struct net_de
}
}
- WARN_ON(!done);
-
- nl80211_send_rx_auth(rdev, dev, buf, len, GFP_KERNEL);
- cfg80211_sme_rx_auth(dev, buf, len);
+ if (done) {
+ nl80211_send_rx_auth(rdev, dev, buf, len, GFP_KERNEL);
+ cfg80211_sme_rx_auth(dev, buf, len);
+ }
wdev_unlock(wdev);
}