From patchwork Mon Jul 10 23:03:00 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13307832 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EB28AC001DE for ; Mon, 10 Jul 2023 23:03:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230419AbjGJXDX (ORCPT ); Mon, 10 Jul 2023 19:03:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42040 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230345AbjGJXDV (ORCPT ); Mon, 10 Jul 2023 19:03:21 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3B798E42; Mon, 10 Jul 2023 16:03:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=hEmg3A0RYm7ry5jQKFwhBPeFaR0jwydfS2VR7x1r72Y=; b=W3k4lCx1bPdNRNN0M14srtcpat 2p26tO4jXRFFQyO45qpXAT83Vjaj9en+Wyg4syI+e6pmY+zV8d7vBiHGSMnMRnvEUq2vvX6zOqnSL 3ghf7W0Oq/cblsFUiqQFCcqKC2QoLPLPStw0a9SwIgBi9fH5K+wHzOL81Gm1lYtDdg4vfpJwX5GPK AHt3u9Pm1/YySHr70TzWMhmPFyQZ/I1PSXFjXrq601W5sU3gY0ptzpfHXumxAwQQ+NXuWhpjPtEg2 om6bIXqMgTL31pssKF5Z+gexvdcAANlwSgchRSGOIFlKO0JfEkTGfXEjvhd+cVz4ziK/qU2IMwFDr gMDK/7mw==; Received: from [2601:1c2:980:9ec0::2764] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1qIzuU-00CuO1-0m; Mon, 10 Jul 2023 23:03:14 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , linux-wireless@vger.kernel.org, linux-wpan@vger.kernel.org, Jay Vosburgh , Andy Gospodarek , Johannes Berg , Mauro Carvalho Chehab , Alexander Aring , Stefan Schmidt , Miquel Raynal , Marcel Holtmann , Jamal Hadi Salim , Cong Wang , Jiri Pirko , Dave Taht , Arkadi Sharshevsky , Moshe Shemesh , Jacob Keller , Nikolay Aleksandrov , Benjamin Berg , Yi Yang , Jiri Benc , Leslie Monis , "Mohit P. Tahiliani" , Gautam Ramakrishnan , Prameela Rani Garnepudi , Siva Rebbagondla , Amitkumar Karwar , Kalle Valo Subject: [PATCH net 00/12] net: fix kernel-doc problems in include/net/ Date: Mon, 10 Jul 2023 16:03:00 -0700 Message-ID: <20230710230312.31197-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wpan@vger.kernel.org Fix many (but not all) kernel-doc warnings in include/net/. [PATCH net 01/12] net: bonding: remove kernel-doc comment marker [PATCH net 02/12] wifi: cfg80211: remove dead/unused enum value [PATCH net 03/12] net: cfg802154: fix kernel-doc notation warnings [PATCH net 04/12] codel: fix kernel-doc notation warnings [PATCH net 05/12] devlink: fix kernel-doc notation warnings [PATCH net 06/12] wifi: radiotap: fix kernel-doc notation warnings [PATCH net 07/12] inet: frags: remove kernel-doc comment marker [PATCH net 08/12] net: llc: fix kernel-doc notation warnings [PATCH net 09/12] wifi: mac80211: fix kernel-doc notation warning [PATCH net 10/12] net: NSH: fix kernel-doc notation warning [PATCH net 11/12] pie: fix kernel-doc notation warning [PATCH net 12/12] rsi: remove kernel-doc comment marker include/net/bonding.h | 2 +- include/net/cfg80211.h | 1 - include/net/cfg802154.h | 3 ++- include/net/codel.h | 4 ++-- include/net/devlink.h | 28 ++++++++++++++++------------ include/net/ieee80211_radiotap.h | 3 ++- include/net/inet_frag.h | 2 +- include/net/llc_pdu.h | 6 ++++-- include/net/mac80211.h | 1 + include/net/nsh.h | 2 +- include/net/pie.h | 2 +- include/net/rsi_91x.h | 2 +- 12 files changed, 32 insertions(+), 24 deletions(-) Cc: "David S. Miller" Cc: Eric Dumazet Cc: Jakub Kicinski Cc: Paolo Abeni Cc: linux-wireless@vger.kernel.org Cc: linux-wpan@vger.kernel.org Cc: Jay Vosburgh Cc: Andy Gospodarek Cc: Johannes Berg Cc: Mauro Carvalho Chehab Cc: Alexander Aring Cc: Stefan Schmidt Cc: Miquel Raynal Cc: Marcel Holtmann Cc: Jamal Hadi Salim Cc: Cong Wang Cc: Jiri Pirko Cc: Dave Taht Cc: Arkadi Sharshevsky Cc: Moshe Shemesh Cc: Jacob Keller Cc: Nikolay Aleksandrov Cc: Benjamin Berg Cc: Yi Yang Cc: Jiri Benc Cc: Leslie Monis Cc: "Mohit P. Tahiliani" Cc: Gautam Ramakrishnan Cc: Prameela Rani Garnepudi Cc: Siva Rebbagondla Cc: Amitkumar Karwar Cc: Kalle Valo