diff options
author | Johannes Berg <johannes.berg@intel.com> | 2017-02-15 15:02:06 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2017-03-06 09:21:43 +0100 |
commit | 2fb51c35815dc08638a7d9b1a497a9d7cb4109b8 (patch) | |
tree | 7e71cd8755ebb0a82d6fb82350707ec71693eb7d /include | |
parent | 68506e9af132a6b5735c1dd4b11240da0cf5eeae (diff) | |
download | linux-stable-2fb51c35815dc08638a7d9b1a497a9d7cb4109b8.tar.gz linux-stable-2fb51c35815dc08638a7d9b1a497a9d7cb4109b8.tar.bz2 linux-stable-2fb51c35815dc08638a7d9b1a497a9d7cb4109b8.zip |
ieee80211: rename CCFS1/CCFS2 to CCFS0/CCFS1
This matches the spec, and otherwise things are really
confusing with the next patch adding CCFS2.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ieee80211.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index 6ea381c98aae..e167a262d3b0 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h @@ -1525,14 +1525,14 @@ enum ieee80211_vht_chanwidth { * This structure is the "VHT operation element" as * described in 802.11ac D3.0 8.4.2.161 * @chan_width: Operating channel width + * @center_freq_seg0_idx: center freq segment 0 index * @center_freq_seg1_idx: center freq segment 1 index - * @center_freq_seg2_idx: center freq segment 2 index * @basic_mcs_set: VHT Basic MCS rate set */ struct ieee80211_vht_operation { u8 chan_width; + u8 center_freq_seg0_idx; u8 center_freq_seg1_idx; - u8 center_freq_seg2_idx; __le16 basic_mcs_set; } __packed; |