mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 15:41:39 +00:00
mac80211: remove pointless chanctx NULL check
If chanctx is derived as container_of() from a non-NULL pointer, it can't ever be NULL. Since we checked conf before, that's true here, so remove the useless NULL check. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
5140974dca
commit
8826fef95b
@ -2961,10 +2961,6 @@ __ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
chanctx = container_of(conf, struct ieee80211_chanctx, conf);
|
chanctx = container_of(conf, struct ieee80211_chanctx, conf);
|
||||||
if (!chanctx) {
|
|
||||||
err = -EBUSY;
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
ch_switch.timestamp = 0;
|
ch_switch.timestamp = 0;
|
||||||
ch_switch.device_timestamp = 0;
|
ch_switch.device_timestamp = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user