From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5550F59935; Thu, 21 Dec 2023 17:23:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="nic4msbx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 155B1C433C8; Thu, 21 Dec 2023 17:23:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1703179406; bh=bmqokF3kgu1a6y7OqSmf6SM3KbNzFnncTz3JQchWAOo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=nic4msbxsvkbFqIGsB/z1s4VTSD5Esv18EWksyK4vwrDnRWWu9H+LI5yM4RNI7waW 8nRIhRWI25YobSq22R1opZ0Djlj467GE+PWKesTnBi3t9aBlrkueYdFBMBg3BR5gnC yO0hvIl9H1k/kNE8yIVRjkXaWqTSpxa/h7znbBt8F2p6iMSlasIL1dqNJ/20VWRzw3 tQ02g7cuvI2ek9J2Q+Obed8EyonvTSqQetQcfhUfwLrYDc7bIFpMK4u4QmEFDpBefI B4Wm9Tv0tlbEbN8OGcvDBmA13j4bifGfvsQKpn0w3GKr/KR1w7o/2wa0OP3h3+/SY0 D+Fa5R+9C07Rw== Date: Thu, 21 Dec 2023 18:23:19 +0100 From: Simon Horman To: Jonathan Corbet Cc: Johannes Berg , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , linux-wireless@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH net] wifi: mac80211: address some kerneldoc warnings Message-ID: <20231221172319.GD1056991@kernel.org> References: <87zfy4bhxo.fsf@meer.lwn.net> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87zfy4bhxo.fsf@meer.lwn.net> On Wed, Dec 20, 2023 at 03:57:55PM -0700, Jonathan Corbet wrote: > include/net/mac80111.h contains a number of either excess or incorrect > kerneldoc entries for structure members, leading to these warnings: > > ./include/net/mac80211.h:491: warning: Excess struct member 'rssi' description in 'ieee80211_event' > ./include/net/mac80211.h:491: warning: Excess struct member 'mlme' description in 'ieee80211_event' > ./include/net/mac80211.h:491: warning: Excess struct member 'ba' description in 'ieee80211_event' > ./include/net/mac80211.h:777: warning: Excess struct member 'ack_enabled' description in 'ieee80211_bss_conf' > ./include/net/mac80211.h:1222: warning: Excess struct member 'ampdu_ack_len' description in 'ieee80211_tx_info' > ./include/net/mac80211.h:1222: warning: Excess struct member 'ampdu_len' description in 'ieee80211_tx_info' > ./include/net/mac80211.h:1222: warning: Excess struct member 'ack_signal' description in 'ieee80211_tx_info' > ./include/net/mac80211.h:2920: warning: Excess struct member 'radiotap_he' description in 'ieee80211_hw' > > Fix or remove the entries as needed. This change removes 208 warnings from > a "make htmldocs" build. > > Signed-off-by: Jonathan Corbet Thanks Jonathan, I verified that the above mentioned warnings are present in next-20231221 without this patch, but not with this patch. Reviewed-by: Simon Horman