linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net 05/10] net: fill in MODULE_DESCRIPTION()s for dwmac-socfpga
       [not found] <20240125193420.533604-1-leitao@debian.org>
@ 2024-01-25 19:34 ` Breno Leitao
  2024-01-30 12:56   ` Simon Horman
  2024-01-25 19:34 ` [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for PCS drivers Breno Leitao
  1 sibling, 1 reply; 4+ messages in thread
From: Breno Leitao @ 2024-01-25 19:34 UTC (permalink / raw)
  To: kuba, davem, pabeni, edumazet, Alexandre Torgue, Jose Abreu,
	Maxime Coquelin
  Cc: dsahern, weiwan, netdev, linux-kernel,
	moderated list:ARM/STM32 ARCHITECTURE,
	moderated list:ARM/STM32 ARCHITECTURE

W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the STMicro DWMAC for Altera SOCs.

Signed-off-by: Breno Leitao <leitao@debian.org>
---
 drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
index ba2ce776bd4d..68f85e4605cb 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
@@ -585,4 +585,5 @@ static struct platform_driver socfpga_dwmac_driver = {
 };
 module_platform_driver(socfpga_dwmac_driver);
 
+MODULE_DESCRIPTION("Altera SOC DWMAC Specific Glue layer");
 MODULE_LICENSE("GPL v2");
-- 
2.39.3


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for PCS drivers
       [not found] <20240125193420.533604-1-leitao@debian.org>
  2024-01-25 19:34 ` [PATCH net 05/10] net: fill in MODULE_DESCRIPTION()s for dwmac-socfpga Breno Leitao
@ 2024-01-25 19:34 ` Breno Leitao
  2024-01-25 21:26   ` Andrew Lunn
  1 sibling, 1 reply; 4+ messages in thread
From: Breno Leitao @ 2024-01-25 19:34 UTC (permalink / raw)
  To: kuba, davem, pabeni, edumazet, Ioana Ciornei, Andrew Lunn,
	Heiner Kallweit, Russell King, Alexander Couzens, Daniel Golle,
	Matthias Brugger, AngeloGioacchino Del Regno, Jose Abreu
  Cc: dsahern, weiwan, netdev, linux-kernel,
	moderated list:ARM/Mediatek SoC support,
	moderated list:ARM/Mediatek SoC support

W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the Lynx, XPCS and LynxI PCS drivers.

Signed-off-by: Breno Leitao <leitao@debian.org>
---
 drivers/net/pcs/pcs-lynx.c      | 1 +
 drivers/net/pcs/pcs-mtk-lynxi.c | 1 +
 drivers/net/pcs/pcs-xpcs.c      | 1 +
 3 files changed, 3 insertions(+)

diff --git a/drivers/net/pcs/pcs-lynx.c b/drivers/net/pcs/pcs-lynx.c
index dc3962b2aa6b..853b8c138718 100644
--- a/drivers/net/pcs/pcs-lynx.c
+++ b/drivers/net/pcs/pcs-lynx.c
@@ -398,4 +398,5 @@ void lynx_pcs_destroy(struct phylink_pcs *pcs)
 }
 EXPORT_SYMBOL(lynx_pcs_destroy);
 
+MODULE_DESCRIPTION("NXP Lynx PCS phylink library");
 MODULE_LICENSE("Dual BSD/GPL");
diff --git a/drivers/net/pcs/pcs-mtk-lynxi.c b/drivers/net/pcs/pcs-mtk-lynxi.c
index 8501dd365279..4f63abe638c4 100644
--- a/drivers/net/pcs/pcs-mtk-lynxi.c
+++ b/drivers/net/pcs/pcs-mtk-lynxi.c
@@ -303,4 +303,5 @@ void mtk_pcs_lynxi_destroy(struct phylink_pcs *pcs)
 }
 EXPORT_SYMBOL(mtk_pcs_lynxi_destroy);
 
+MODULE_DESCRIPTION("MediaTek SGMII library for LynxI");
 MODULE_LICENSE("GPL");
diff --git a/drivers/net/pcs/pcs-xpcs.c b/drivers/net/pcs/pcs-xpcs.c
index 31f0beba638a..52a7757ee419 100644
--- a/drivers/net/pcs/pcs-xpcs.c
+++ b/drivers/net/pcs/pcs-xpcs.c
@@ -1456,4 +1456,5 @@ struct dw_xpcs *xpcs_create_mdiodev(struct mii_bus *bus, int addr,
 }
 EXPORT_SYMBOL_GPL(xpcs_create_mdiodev);
 
+MODULE_DESCRIPTION("Synopsys DesignWare XPCS library");
 MODULE_LICENSE("GPL v2");
-- 
2.39.3


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for PCS drivers
  2024-01-25 19:34 ` [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for PCS drivers Breno Leitao
@ 2024-01-25 21:26   ` Andrew Lunn
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Lunn @ 2024-01-25 21:26 UTC (permalink / raw)
  To: Breno Leitao
  Cc: kuba, davem, pabeni, edumazet, Ioana Ciornei, Heiner Kallweit,
	Russell King, Alexander Couzens, Daniel Golle, Matthias Brugger,
	AngeloGioacchino Del Regno, Jose Abreu, dsahern, weiwan, netdev,
	linux-kernel, moderated list:ARM/Mediatek SoC support,
	moderated list:ARM/Mediatek SoC support

On Thu, Jan 25, 2024 at 11:34:18AM -0800, Breno Leitao wrote:
> W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> Add descriptions to the Lynx, XPCS and LynxI PCS drivers.
> 
> Signed-off-by: Breno Leitao <leitao@debian.org>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net 05/10] net: fill in MODULE_DESCRIPTION()s for dwmac-socfpga
  2024-01-25 19:34 ` [PATCH net 05/10] net: fill in MODULE_DESCRIPTION()s for dwmac-socfpga Breno Leitao
@ 2024-01-30 12:56   ` Simon Horman
  0 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2024-01-30 12:56 UTC (permalink / raw)
  To: Breno Leitao
  Cc: kuba, davem, pabeni, edumazet, Alexandre Torgue, Jose Abreu,
	Maxime Coquelin, dsahern, weiwan, netdev, linux-kernel,
	moderated list:ARM/STM32 ARCHITECTURE,
	moderated list:ARM/STM32 ARCHITECTURE

On Thu, Jan 25, 2024 at 11:34:15AM -0800, Breno Leitao wrote:
> W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> Add descriptions to the STMicro DWMAC for Altera SOCs.
> 
> Signed-off-by: Breno Leitao <leitao@debian.org>

Reviewed-by: Simon Horman <horms@kernel.org>


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-01-30 12:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20240125193420.533604-1-leitao@debian.org>
2024-01-25 19:34 ` [PATCH net 05/10] net: fill in MODULE_DESCRIPTION()s for dwmac-socfpga Breno Leitao
2024-01-30 12:56   ` Simon Horman
2024-01-25 19:34 ` [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for PCS drivers Breno Leitao
2024-01-25 21:26   ` Andrew Lunn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).