diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-08 23:17:05 -0700 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-06-12 16:53:47 +0530 |
commit | ea09ba7653bb53252ed96ec524991c55a38bcd0f (patch) | |
tree | 7ad2051399158ca7192f674b081a1e1d6b7d164e /drivers/phy | |
parent | bbc63e701c73bfab9f437f9661f0cbc3860097d5 (diff) | |
download | linux-stable-ea09ba7653bb53252ed96ec524991c55a38bcd0f.tar.gz linux-stable-ea09ba7653bb53252ed96ec524991c55a38bcd0f.tar.bz2 linux-stable-ea09ba7653bb53252ed96ec524991c55a38bcd0f.zip |
phy: broadcom: add missing MODULE_DESCRIPTION() macros
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/phy/broadcom/phy-bcm-ns-usb2.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/phy/broadcom/phy-bcm-ns-usb3.o
Add the missing invocations of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240608-md-drivers-phy-broadcom-v1-1-f070f84cc3f0@quicinc.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy')
-rw-r--r-- | drivers/phy/broadcom/phy-bcm-ns-usb2.c | 1 | ||||
-rw-r--r-- | drivers/phy/broadcom/phy-bcm-ns-usb3.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/phy/broadcom/phy-bcm-ns-usb2.c b/drivers/phy/broadcom/phy-bcm-ns-usb2.c index 269564bdf687..5213c75b6da6 100644 --- a/drivers/phy/broadcom/phy-bcm-ns-usb2.c +++ b/drivers/phy/broadcom/phy-bcm-ns-usb2.c @@ -162,4 +162,5 @@ static struct platform_driver bcm_ns_usb2_driver = { }; module_platform_driver(bcm_ns_usb2_driver); +MODULE_DESCRIPTION("Broadcom Northstar USB 2.0 PHY Driver"); MODULE_LICENSE("GPL v2"); diff --git a/drivers/phy/broadcom/phy-bcm-ns-usb3.c b/drivers/phy/broadcom/phy-bcm-ns-usb3.c index 2c8b1b7dda5b..9f995e156f75 100644 --- a/drivers/phy/broadcom/phy-bcm-ns-usb3.c +++ b/drivers/phy/broadcom/phy-bcm-ns-usb3.c @@ -240,5 +240,6 @@ static struct mdio_driver bcm_ns_usb3_mdio_driver = { mdio_module_driver(bcm_ns_usb3_mdio_driver); +MODULE_DESCRIPTION("Broadcom Northstar USB 3.0 PHY Driver"); MODULE_LICENSE("GPL v2"); MODULE_DEVICE_TABLE(of, bcm_ns_usb3_id_table); |