Skip to content

Commit 9874b71

Browse files
committed
cfg80211: add missing documentation that kernel-doc warns about
Add the missing documentation that kernel-doc continually warns about, to get rid of all that noise. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
1 parent 2332328 commit 9874b71

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

include/net/cfg80211.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1443,6 +1443,7 @@ enum monitor_flags {
14431443
* @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
14441444
* @MPATH_INFO_FLAGS: @flags filled
14451445
* @MPATH_INFO_HOP_COUNT: @hop_count filled
1446+
* @MPATH_INFO_PATH_CHANGE: @path_change_count filled
14461447
*/
14471448
enum mpath_info_flags {
14481449
MPATH_INFO_FRAME_QLEN = BIT(0),
@@ -4609,6 +4610,17 @@ struct cfg80211_cqm_config;
46094610
* @mesh_id_len: (private) Used by the internal configuration code
46104611
* @mesh_id_up_len: (private) Used by the internal configuration code
46114612
* @wext: (private) Used by the internal wireless extensions compat code
4613+
* @wext.ibss: (private) IBSS data part of wext handling
4614+
* @wext.connect: (private) connection handling data
4615+
* @wext.keys: (private) (WEP) key data
4616+
* @wext.ie: (private) extra elements for association
4617+
* @wext.ie_len: (private) length of extra elements
4618+
* @wext.bssid: (private) selected network BSSID
4619+
* @wext.ssid: (private) selected network SSID
4620+
* @wext.default_key: (private) selected default key index
4621+
* @wext.default_mgmt_key: (private) selected default management key index
4622+
* @wext.prev_bssid: (private) previous BSSID for reassociation
4623+
* @wext.prev_bssid_valid: (private) previous BSSID validity
46124624
* @use_4addr: indicates 4addr mode is used on this interface, must be
46134625
* set by driver (if supported) on add_interface BEFORE registering the
46144626
* netdev and may otherwise be used by driver read-only, will be update
@@ -4708,7 +4720,8 @@ struct wireless_dev {
47084720
struct cfg80211_cached_keys *keys;
47094721
const u8 *ie;
47104722
size_t ie_len;
4711-
u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
4723+
u8 bssid[ETH_ALEN];
4724+
u8 prev_bssid[ETH_ALEN];
47124725
u8 ssid[IEEE80211_MAX_SSID_LEN];
47134726
s8 default_key, default_mgmt_key;
47144727
bool prev_bssid_valid;

0 commit comments

Comments
 (0)