mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
[MAC80211]: fix preamble setting
It looks like in commit 28487a90 the condition was unintentionally negated by moving some code, fix it. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Cc: Daniel Drake <dsd@gentoo.org> Acked-by: Michael Wu <flamingice@sourmilk.net> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6c55aa9735
commit
b63bde7bb7
@ -821,7 +821,7 @@ static int ieee80211_ioctl_prism2_param(struct net_device *dev,
|
||||
break;
|
||||
|
||||
case PRISM2_PARAM_PREAMBLE:
|
||||
if (sdata->type != IEEE80211_IF_TYPE_AP) {
|
||||
if (sdata->type == IEEE80211_IF_TYPE_AP) {
|
||||
if (value)
|
||||
sdata->flags |= IEEE80211_SDATA_SHORT_PREAMBLE;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user