net: fill in MODULE_DESCRIPTION()s for Qualcom drivers
authorBreno Leitao <leitao@debian.org>
Thu, 25 Jan 2024 19:34:14 +0000 (11:34 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 29 Jan 2024 12:12:51 +0000 (12:12 +0000)
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the Qualcom rmnet and emac drivers.

Signed-off-by: Breno Leitao <leitao@debian.org>
Reviewed-by: Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qualcomm/emac/emac.c
drivers/net/ethernet/qualcomm/rmnet/rmnet_config.c

index 3270df72541b0a3d3ab2fad79410c58d4e789322..4c06f55878de9ab41a9c2346f05869c5ad80249e 100644 (file)
@@ -771,5 +771,6 @@ static struct platform_driver emac_platform_driver = {
 
 module_platform_driver(emac_platform_driver);
 
+MODULE_DESCRIPTION("Qualcomm EMAC Gigabit Ethernet driver");
 MODULE_LICENSE("GPL v2");
 MODULE_ALIAS("platform:qcom-emac");
index 5b69b9268c757fca7aa42545e6ac3d87143d2971..f3bea196a8f9d59fc8f70d6b8bcbbf0e0aeca7c3 100644 (file)
@@ -520,4 +520,5 @@ static void __exit rmnet_exit(void)
 module_init(rmnet_init)
 module_exit(rmnet_exit)
 MODULE_ALIAS_RTNL_LINK("rmnet");
+MODULE_DESCRIPTION("Qualcomm RmNet MAP driver");
 MODULE_LICENSE("GPL v2");