All of lore.kernel.org
 help / color / mirror / Atom feed
From: Breno Leitao <leitao@debian.org>
To: kuba@kernel.org, davem@davemloft.net, pabeni@redhat.com,
	edumazet@google.com, Kalle Valo <kvalo@kernel.org>
Cc: dsahern@kernel.org, weiwan@google.com, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, horms@kernel.org, andrew@lunn.ch,
	leit@fb.com, "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
	"Kees Cook" <keescook@chromium.org>,
	"Johannes Berg" <johannes.berg@intel.com>,
	"Emmanuel Grumbach" <emmanuel.grumbach@intel.com>,
	"Justin Stitt" <justinstitt@google.com>,
	"Li Zetao" <lizetao1@huawei.com>,
	"Francois Romieu" <romieu@fr.zoreil.com>,
	"Rob Herring" <robh@kernel.org>,
	"Marc Kleine-Budde" <mkl@pengutronix.de>,
	"Ruan Jinjie" <ruanjinjie@huawei.com>,
	linux-wireless@vger.kernel.org (open list:TI WILINK WIRELESS
	DRIVERS)
Subject: [PATCH net 1/9] wifi: fill in MODULE_DESCRIPTION()s for wlcore
Date: Tue, 30 Jan 2024 02:42:35 -0800	[thread overview]
Message-ID: <20240130104243.3025393-2-leitao@debian.org> (raw)
In-Reply-To: <20240130104243.3025393-1-leitao@debian.org>

W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the TI WLAN wlcore drivers.

Signed-off-by: Breno Leitao <leitao@debian.org>
---
 drivers/net/wireless/ti/wlcore/main.c | 1 +
 drivers/net/wireless/ti/wlcore/sdio.c | 1 +
 drivers/net/wireless/ti/wlcore/spi.c  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
index fb9ed97774c7..5736acb4d206 100644
--- a/drivers/net/wireless/ti/wlcore/main.c
+++ b/drivers/net/wireless/ti/wlcore/main.c
@@ -6793,6 +6793,7 @@ MODULE_PARM_DESC(bug_on_recovery, "BUG() on fw recovery");
 module_param(no_recovery, int, 0600);
 MODULE_PARM_DESC(no_recovery, "Prevent HW recovery. FW will remain stuck.");
 
+MODULE_DESCRIPTION("TI WLAN core driver");
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
 MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
diff --git a/drivers/net/wireless/ti/wlcore/sdio.c b/drivers/net/wireless/ti/wlcore/sdio.c
index f0686635db46..eb5482ed76ae 100644
--- a/drivers/net/wireless/ti/wlcore/sdio.c
+++ b/drivers/net/wireless/ti/wlcore/sdio.c
@@ -447,6 +447,7 @@ module_sdio_driver(wl1271_sdio_driver);
 module_param(dump, bool, 0600);
 MODULE_PARM_DESC(dump, "Enable sdio read/write dumps.");
 
+MODULE_DESCRIPTION("TI WLAN SDIO helpers");
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
 MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
diff --git a/drivers/net/wireless/ti/wlcore/spi.c b/drivers/net/wireless/ti/wlcore/spi.c
index 7d9a139db59e..0aa2b2f3c5c9 100644
--- a/drivers/net/wireless/ti/wlcore/spi.c
+++ b/drivers/net/wireless/ti/wlcore/spi.c
@@ -562,6 +562,7 @@ static struct spi_driver wl1271_spi_driver = {
 };
 
 module_spi_driver(wl1271_spi_driver);
+MODULE_DESCRIPTION("TI WLAN SPI helpers");
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
 MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
-- 
2.39.3


  reply	other threads:[~2024-01-30 10:43 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-30 10:42 [PATCH net 0/9] wifi: Fix MODULE_DESCRIPTION() for net (p4) Breno Leitao
2024-01-30 10:42 ` Breno Leitao
2024-01-30 10:42 ` Breno Leitao [this message]
2024-01-30 13:23   ` [PATCH net 1/9] wifi: fill in MODULE_DESCRIPTION()s for wlcore Kalle Valo
2024-01-31  2:14     ` Jakub Kicinski
2024-01-31  5:10       ` Kalle Valo
2024-01-31 16:33   ` Kalle Valo
2024-01-30 10:42 ` [PATCH net 2/9] wifi: fill in MODULE_DESCRIPTION()s for wl1251 and wl12xx Breno Leitao
2024-01-30 10:42 ` [PATCH net 3/9] wifi: fill in MODULE_DESCRIPTION()s for Broadcom WLAN Breno Leitao
2024-01-30 10:42 ` [PATCH net 4/9] wifi: fill in MODULE_DESCRIPTION()s for ar5523 Breno Leitao
2024-01-30 10:42 ` [PATCH net 5/9] wifi: fill in MODULE_DESCRIPTION()s for wcn36xx Breno Leitao
2024-01-30 17:29   ` Jeff Johnson
2024-01-30 10:42 ` [PATCH net 6/9] wifi: fill in MODULE_DESCRIPTION()s for p54spi Breno Leitao
2024-02-01 14:54   ` Christian Lamparter
2024-01-30 10:42 ` [PATCH net 7/9] wifi: fill in MODULE_DESCRIPTION()s for wl18xx Breno Leitao
2024-01-30 10:42 ` [PATCH net 8/9] wifi: fill in MODULE_DESCRIPTION()s for wilc1000 Breno Leitao
2024-01-30 10:42 ` [PATCH net 9/9] wifi: fill in MODULE_DESCRIPTION()s for mt76 drivers Breno Leitao
2024-01-30 10:42   ` Breno Leitao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240130104243.3025393-2-leitao@debian.org \
    --to=leitao@debian.org \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=dsahern@kernel.org \
    --cc=edumazet@google.com \
    --cc=emmanuel.grumbach@intel.com \
    --cc=horms@kernel.org \
    --cc=johannes.berg@intel.com \
    --cc=justinstitt@google.com \
    --cc=keescook@chromium.org \
    --cc=kuba@kernel.org \
    --cc=kvalo@kernel.org \
    --cc=leit@fb.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=lizetao1@huawei.com \
    --cc=mkl@pengutronix.de \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=robh@kernel.org \
    --cc=romieu@fr.zoreil.com \
    --cc=ruanjinjie@huawei.com \
    --cc=u.kleine-koenig@pengutronix.de \
    --cc=weiwan@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.