Skip to content

Commit ea09ba7

Browse files
Jeff Johnsonvinodkoul
authored andcommitted
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent bbc63e7 commit ea09ba7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

drivers/phy/broadcom/phy-bcm-ns-usb2.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,5 @@ static struct platform_driver bcm_ns_usb2_driver = {
162162
};
163163
module_platform_driver(bcm_ns_usb2_driver);
164164

165+
MODULE_DESCRIPTION("Broadcom Northstar USB 2.0 PHY Driver");
165166
MODULE_LICENSE("GPL v2");

drivers/phy/broadcom/phy-bcm-ns-usb3.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,5 +240,6 @@ static struct mdio_driver bcm_ns_usb3_mdio_driver = {
240240

241241
mdio_module_driver(bcm_ns_usb3_mdio_driver);
242242

243+
MODULE_DESCRIPTION("Broadcom Northstar USB 3.0 PHY Driver");
243244
MODULE_LICENSE("GPL v2");
244245
MODULE_DEVICE_TABLE(of, bcm_ns_usb3_id_table);

0 commit comments

Comments
 (0)