diff options
author | Alexei Avshalom Lazar <ailizaro@codeaurora.org> | 2018-08-13 14:33:00 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2018-08-28 11:23:08 +0200 |
commit | 9cf0a0b4b64ae103cf0e7dfaa72b44ecda24c0eb (patch) | |
tree | fea11a7f68a5ecd192b168f45308c6f088e94ad2 /include/net/cfg80211.h | |
parent | mac80211: add stop/start logic for software TXQs (diff) | |
download | linux-9cf0a0b4b64ae103cf0e7dfaa72b44ecda24c0eb.tar.xz linux-9cf0a0b4b64ae103cf0e7dfaa72b44ecda24c0eb.zip |
cfg80211: Add support for 60GHz band channels 5 and 6
The current support in the 60GHz band is for channels 1-4.
Add support for channels 5 and 6.
This requires enlarging ieee80211_channel.center_freq from u16 to u32.
Signed-off-by: Alexei Avshalom Lazar <ailizaro@codeaurora.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 4f57f770f602..46c4cbf54903 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -149,7 +149,7 @@ enum ieee80211_channel_flags { */ struct ieee80211_channel { enum nl80211_band band; - u16 center_freq; + u32 center_freq; u16 hw_value; u32 flags; int max_antenna_gain; |