diff options
author | Randy Dunlap <[email protected]> | 2023-07-10 16:03:09 -0700 |
---|---|---|
committer | Johannes Berg <[email protected]> | 2023-08-22 21:40:41 +0200 |
commit | c6662a4b3ecf03aa832125e9705a185402cd3b17 (patch) | |
tree | ed5b35462bbde48b395788ecd4fcfcb4ebeadb26 | |
parent | 266a5cd768da7e243cd26bc6840ce48cad1c907e (diff) |
wifi: mac80211: fix kernel-doc notation warning
Add description for struct member 'agg' to prevent a kernel-doc
warning.
mac80211.h:2289: warning: Function parameter or member 'agg' not described in 'ieee80211_link_sta'
Fixes: 4c51541ddb78 ("wifi: mac80211: keep A-MSDU data in sta and per-link")
Signed-off-by: Randy Dunlap <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Eric Dumazet <[email protected]>
Cc: Jakub Kicinski <[email protected]>
Cc: Paolo Abeni <[email protected]>
Cc: Johannes Berg <[email protected]>
Cc: Benjamin Berg <[email protected]>
Cc: [email protected]
Link: https://lore.kernel.org/r/[email protected]
[reword the kernel-doc comment]
Signed-off-by: Johannes Berg <[email protected]>
-rw-r--r-- | include/net/mac80211.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 3a8a2d2c58c3..d7fa0a55067e 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h @@ -2259,6 +2259,7 @@ struct ieee80211_sta_aggregates { * @he_cap: HE capabilities of this STA * @he_6ghz_capa: on 6 GHz, holds the HE 6 GHz band capabilities * @eht_cap: EHT capabilities of this STA + * @agg: per-link data for multi-link aggregation * @bandwidth: current bandwidth the station can receive with * @rx_nss: in HT/VHT, the maximum number of spatial streams the * station can receive at the moment, changed by operating mode |