mbox series

[net,00/10] Fix MODULE_DESCRIPTION() for net (p3)

Message ID 20240125193420.533604-1-leitao@debian.org (mailing list archive)
Headers show
Series Fix MODULE_DESCRIPTION() for net (p3) | expand

Message

Breno Leitao Jan. 25, 2024, 7:34 p.m. UTC
There are hundreds of network modules that misses MODULE_DESCRIPTION(),
causing a warning when compiling with W=1. Example:

        WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/arcnet/com90io.o
        WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/arcnet/arc-rimi.o
        WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/arcnet/com20020.o

This part3 of the patchset focus on the missing ethernet drivers, which
is now warning free. This also fixes net/pcs and ieee802154.

Breno Leitao (10):
  net: fill in MODULE_DESCRIPTION()s for encx24j600
  net: fill in MODULE_DESCRIPTION()s for ocelot
  net: fill in MODULE_DESCRIPTION()s for SMSC drivers
  net: fill in MODULE_DESCRIPTION()s for Qualcom drivers
  net: fill in MODULE_DESCRIPTION()s for dwmac-socfpga
  net: fill in MODULE_DESCRIPTION()s for cpsw-common
  net: fill in MODULE_DESCRIPTION()s for ec_bhf
  net: fill in MODULE_DESCRIPTION()s for PCS drivers
  net: fill in MODULE_DESCRIPTION()s for ieee802154
  net: fill in MODULE_DESCRIPTION()s for arcnet

 drivers/net/arcnet/arcnet.c                         | 1 +
 drivers/net/ethernet/ec_bhf.c                       | 1 +
 drivers/net/ethernet/microchip/encx24j600-regmap.c  | 1 +
 drivers/net/ethernet/mscc/ocelot.c                  | 1 +
 drivers/net/ethernet/qualcomm/emac/emac.c           | 1 +
 drivers/net/ethernet/qualcomm/rmnet/rmnet_config.c  | 1 +
 drivers/net/ethernet/smsc/smc91x.c                  | 1 +
 drivers/net/ethernet/smsc/smsc911x.c                | 1 +
 drivers/net/ethernet/smsc/smsc9420.c                | 1 +
 drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 1 +
 drivers/net/ethernet/ti/cpsw-common.c               | 1 +
 drivers/net/pcs/pcs-lynx.c                          | 1 +
 drivers/net/pcs/pcs-mtk-lynxi.c                     | 1 +
 drivers/net/pcs/pcs-xpcs.c                          | 1 +
 net/ieee802154/6lowpan/core.c                       | 1 +
 net/ieee802154/socket.c                             | 1 +
 16 files changed, 16 insertions(+)

Comments

patchwork-bot+netdevbpf@kernel.org Jan. 29, 2024, 12:20 p.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:

On Thu, 25 Jan 2024 11:34:10 -0800 you wrote:
> There are hundreds of network modules that misses MODULE_DESCRIPTION(),
> causing a warning when compiling with W=1. Example:
> 
>         WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/arcnet/com90io.o
>         WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/arcnet/arc-rimi.o
>         WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/arcnet/com20020.o
> 
> [...]

Here is the summary with links:
  - [net,01/10] net: fill in MODULE_DESCRIPTION()s for encx24j600
    https://git.kernel.org/netdev/net-next/c/dec836ed69d1
  - [net,02/10] net: fill in MODULE_DESCRIPTION()s for ocelot
    https://git.kernel.org/netdev/net-next/c/1c870c63d7d2
  - [net,03/10] net: fill in MODULE_DESCRIPTION()s for SMSC drivers
    https://git.kernel.org/netdev/net-next/c/9ba4295b2eab
  - [net,04/10] net: fill in MODULE_DESCRIPTION()s for Qualcom drivers
    https://git.kernel.org/netdev/net-next/c/66c164633bb0
  - [net,05/10] net: fill in MODULE_DESCRIPTION()s for dwmac-socfpga
    https://git.kernel.org/netdev/net-next/c/23f487f70c73
  - [net,06/10] net: fill in MODULE_DESCRIPTION()s for cpsw-common
    https://git.kernel.org/netdev/net-next/c/3e4620c89148
  - [net,07/10] net: fill in MODULE_DESCRIPTION()s for ec_bhf
    https://git.kernel.org/netdev/net-next/c/ad979679d64b
  - [net,08/10] net: fill in MODULE_DESCRIPTION()s for PCS drivers
    https://git.kernel.org/netdev/net-next/c/be884c15de37
  - [net,09/10] net: fill in MODULE_DESCRIPTION()s for ieee802154
    https://git.kernel.org/netdev/net-next/c/6aa89bf8ac9a
  - [net,10/10] net: fill in MODULE_DESCRIPTION()s for arcnet
    https://git.kernel.org/netdev/net-next/c/d06aa0eb0a70

You are awesome, thank you!
Jakub Kicinski Jan. 29, 2024, 8 p.m. UTC | #2
On Mon, 29 Jan 2024 12:20:28 +0000 patchwork-bot+netdevbpf@kernel.org
wrote:
> This series was applied to netdev/net-next.git (main)
> by David S. Miller <davem@davemloft.net>: