diff options
author | Mauro Carvalho Chehab <mchehab@kernel.org> | 2022-06-28 10:46:06 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2022-07-01 10:30:05 +0200 |
commit | 82757b792be7a549460137b2dbfb9d48003a072a (patch) | |
tree | 5b5dc1c2f64840aaaffcc1745b70bc5ffa9508d0 /include/net/mac80211.h | |
parent | 2d8b08fef0af23aa2fe7f1a1719ac5b11478042f (diff) | |
download | lwn-82757b792be7a549460137b2dbfb9d48003a072a.tar.gz lwn-82757b792be7a549460137b2dbfb9d48003a072a.zip |
wifi: mac80211: add a missing comma at kernel-doc markup
The lack of the colon makes it not parse the function parameter:
include/net/mac80211.h:6250: warning: Function parameter or member 'vif' not described in 'ieee80211_channel_switch_disconnect'
Fix it.
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Link: https://lore.kernel.org/r/11c1bdb861d89c93058fcfe312749b482851cbdb.1656409369.git.mchehab@kernel.org
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 27f24ac0426d..c0557142343f 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h @@ -6238,7 +6238,7 @@ void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success); /** * ieee80211_channel_switch_disconnect - disconnect due to channel switch error - * @vif &struct ieee80211_vif pointer from the add_interface callback. + * @vif: &struct ieee80211_vif pointer from the add_interface callback. * @block_tx: if %true, do not send deauth frame. * * Instruct mac80211 to disconnect due to a channel switch error. The channel |