Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: dvb-usb: add missing MODULE_DESCRIPTION() macros

With ARCH=x86, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/media/usb/dvb-usb/dvb-usb-dibusb-common.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common.o

Add the missing invocations of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>

authored by

Jeff Johnson and committed by
Hans Verkuil
4f0200f0 33a1ec47

+2
+1
drivers/media/usb/dvb-usb/dibusb-common.c
··· 14 14 static int debug; 15 15 module_param(debug, int, 0644); 16 16 MODULE_PARM_DESC(debug, "set debugging level (1=info (|-able))." DVB_USB_DEBUG_STATUS); 17 + MODULE_DESCRIPTION("Common methods for dibusb-based receivers"); 17 18 MODULE_LICENSE("GPL"); 18 19 19 20 #define deb_info(args...) dprintk(debug,0x01,args)
+1
drivers/media/usb/dvb-usb/dibusb-mc-common.c
··· 8 8 9 9 #include "dibusb.h" 10 10 11 + MODULE_DESCRIPTION("Common methods for DIB3000MC"); 11 12 MODULE_LICENSE("GPL"); 12 13 13 14 /* 3000MC/P stuff */