diff options
author | Sergey Matyukevich <sergey.matyukevich.os@quantenna.com> | 2020-04-24 13:29:01 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2020-05-27 10:02:00 +0200 |
commit | 2d5d9b7ff49f52ab3ec66ffdc841471a1353ea1b (patch) | |
tree | bc320c8eba08fdcaed4953f6be942fc45afc9717 /include/net/cfg80211.h | |
parent | net: phy: at803x: add cable diagnostics support for ATH9331 and ATH8032 (diff) | |
download | linux-2d5d9b7ff49f52ab3ec66ffdc841471a1353ea1b.tar.xz linux-2d5d9b7ff49f52ab3ec66ffdc841471a1353ea1b.zip |
cfg80211: fix mask type in cfg80211_tid_cfg structure
TIDs mask type is u64 in wiphy settings and nl80211 processing, see:
- wiphy TIDs mask sizes in tid_config_support structure
- prepare driver command in parse_tid_conf
Use the same type for TIDs mask in cfg80211_tid_cfg.
Signed-off-by: Sergey Matyukevich <sergey.matyukevich.os@quantenna.com>
Link: https://lore.kernel.org/r/20200424112905.26770-2-sergey.matyukevich.os@quantenna.com
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 8b6d5c5184d1..e71d4f690ef1 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -646,7 +646,7 @@ struct cfg80211_chan_def { struct cfg80211_tid_cfg { bool config_override; u8 tids; - u32 mask; + u64 mask; enum nl80211_tid_config noack; u8 retry_long, retry_short; enum nl80211_tid_config ampdu; |