aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/common/common.c
diff options
context:
space:
mode:
authorJeff Johnson <[email protected]>2024-06-12 01:54:11 +0000
committerGreg Kroah-Hartman <[email protected]>2024-06-20 17:18:47 +0000
commit5a94c9a3129ced550f8d73feb06f3feeb4edf61d (patch)
tree04983348307c58e8f0d2a7330d1dd7d146400760 /drivers/usb/common/common.c
parentusb: phy: add missing MODULE_DESCRIPTION() macros (diff)
downloadkernel-5a94c9a3129ced550f8d73feb06f3feeb4edf61d.tar.gz
kernel-5a94c9a3129ced550f8d73feb06f3feeb4edf61d.zip
usb: common: add missing MODULE_DESCRIPTION() macros
With ARCH=x86, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/common/usb-common.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/common/usb-otg-fsm.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: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/usb/common/common.c')
-rw-r--r--drivers/usb/common/common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/common/common.c b/drivers/usb/common/common.c
index b84efae26e15..59b55d6cf490 100644
--- a/drivers/usb/common/common.c
+++ b/drivers/usb/common/common.c
@@ -433,4 +433,5 @@ static void __exit usb_common_exit(void)
subsys_initcall(usb_common_init);
module_exit(usb_common_exit);
+MODULE_DESCRIPTION("Common code for host and device side USB");
MODULE_LICENSE("GPL");