Commit 4b6a8799 authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Greg Kroah-Hartman

staging: rtl8192u: simplify conditional

The code can be much cleaner and readable by simplifying the conditional
statement.
Signed-off-by: default avatarLuis de Bethencourt <luisbg@osg.samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1ff0c8a9
...@@ -466,13 +466,9 @@ void ieee80211_softmac_scan_syncro(struct ieee80211_device *ieee) ...@@ -466,13 +466,9 @@ void ieee80211_softmac_scan_syncro(struct ieee80211_device *ieee)
/* this prevent excessive time wait when we /* this prevent excessive time wait when we
* need to wait for a syncro scan to end.. * need to wait for a syncro scan to end..
*/ */
if(ieee->state < IEEE80211_LINKED) if (ieee->state >= IEEE80211_LINKED && ieee->sync_scan_hurryup)
;
else
if (ieee->sync_scan_hurryup)
goto out; goto out;
msleep_interruptible_rsl(IEEE80211_SOFTMAC_SCAN_TIME); msleep_interruptible_rsl(IEEE80211_SOFTMAC_SCAN_TIME);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment