mac80211: simplify TDLS RA lookup
authorJohannes Berg <johannes.berg@intel.com>
Tue, 13 Sep 2016 06:28:22 +0000 (08:28 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 13 Sep 2016 06:28:22 +0000 (08:28 +0200)
commit11d62caf93cf12ce80ff8304849887666ec8880a
treea9e1890f3a0d41ece3eb1ee9823951808380b2c2
parent8d51dbb8c7fb5412f0935c20f66e27d2c63ef4a0
mac80211: simplify TDLS RA lookup

smatch pointed out that the second check of "tdls_auth" was
pointless since if it was true, we returned from the function
already. We can further simplify the code by moving the first
check (if it's a TDLS peer at all) into the outer if, to only
handle that inside. This simplifies the control flow here.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/tx.c