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 4A51D81E40; Tue, 12 Dec 2023 19:24:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="lxSJcR2H" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0C062C433C8; Tue, 12 Dec 2023 19:24:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702409096; bh=YKUYPwfQBBW92BlkDApqDnDZn5/rc1aNpNwEcRqPpiY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=lxSJcR2HGJyqL+55l1Kg16M+VJ2anthTLtAk0B5+O7iAKLbca6n4BpExge9JA7x3z OLoXWRkR3QmOdFqcPAuMVXRgujLPnwIpLvjwotzOFx3XGUOsCrOKPf/E60zi1VRdlk 3oDYEo/97GAfEdj0EWcqsk8B4FMpISVyuw4001UTHAY3B9+vOdeGzkEDRrf4XmmPmH GL0fs+SvkJjtMj2aNv7u7cfssgx0T9gluceqPyyCV5aqs3ldUZJEB7i04FkLn7wZNa IH9OvqEPYVwPNcu7BU+w6hDi8n+zYlwe4adVSYD1bKQVMVszzTM4B8h/GqpCHgsgcT PgHt+inMkgCsg== Date: Tue, 12 Dec 2023 19:24:52 +0000 From: Simon Horman To: Randy Dunlap Cc: netdev@vger.kernel.org, kernel test robot , Gregory Greenman , Miri Korenblit , linux-wireless@vger.kernel.org, Kalle Valo , Johannes Berg Subject: Re: [PATCH] wifi: iwlwifi: fw/dbg: fix all kernel-doc warnings Message-ID: <20231212192452.GD5817@kernel.org> References: <20231208220945.20628-1-rdunlap@infradead.org> 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: <20231208220945.20628-1-rdunlap@infradead.org> On Fri, Dec 08, 2023 at 02:09:45PM -0800, Randy Dunlap wrote: > kernel test robot reports: > drivers/net/wireless/intel/iwlwifi/fw/dbg.c:86: warning: Excess struct/union/enum/typedef member 'trans_len' description in 'iwl_fw_dump_ptrs' > > scripts/kernel-doc no longer emits the warning that is reported by > the 0-day kernel test robot, but the reported struct does contain the > Excess line, so remove that line as well as fix other kernel-doc > warnings in this source file: > > dbg.c:1732: warning: contents before sections > dbg.c:1736: warning: No description found for return value of 'mask_apply_and_normalize' > dbg.c:2202: warning: missing initial short description on line: > * iwl_dump_ini_mem > dbg.c:2207: warning: contents before sections > dbg.c:2215: warning: No description found for return value of 'iwl_dump_ini_mem' > > Signed-off-by: Randy Dunlap > Reported-by: kernel test robot > Closes: https://lore.kernel.org/oe-kbuild-all/202311250305.tf8Cus1Y-lkp@intel.com/ > Closes: https://lore.kernel.org/oe-kbuild-all/202312060810.QT9zourt-lkp@intel.com/ > Cc: Gregory Greenman > Cc: Miri Korenblit > Cc: linux-wireless@vger.kernel.org > Cc: Kalle Valo > Cc: Johannes Berg Thanks Randy, I'm unable to reproduce the "other warnings". But these changes do look good to me. Reviewed-by: Simon Horman ...