mac80211: ibss: Fix channel type enum in ieee80211_sta_join_ibss()
authorMatthias Kaehlcke <mka@chromium.org>
Mon, 17 Apr 2017 20:59:53 +0000 (13:59 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 8 Apr 2018 10:12:47 +0000 (12:12 +0200)
commit471d4a48d8d19cce4afcb02072b19108cbbf2571
tree32c67e8fa89511e8c1f7f51c8c571db0bbb93328
parent2bb306460188d3200e42e1431d24d19df4159505
mac80211: ibss: Fix channel type enum in ieee80211_sta_join_ibss()

commit a4ac6f2e53e568a77a2eb3710efd99ca08634c0a upstream.

cfg80211_chandef_create() expects an 'enum nl80211_channel_type' as
channel type however in ieee80211_sta_join_ibss()
NL80211_CHAN_WIDTH_20_NOHT is passed in two occasions, which is of
the enum type 'nl80211_chan_width'. Change the value to NL80211_CHAN_NO_HT
(20 MHz, non-HT channel) of the channel type enum.

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Cc: Nathan Chancellor <natechancellor@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/mac80211/ibss.c