Skip to content

Commit 4f0200f

Browse files
Jeff JohnsonHans Verkuil
authored andcommitted
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 <[email protected]> Signed-off-by: Hans Verkuil <[email protected]>
1 parent 33a1ec4 commit 4f0200f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

drivers/media/usb/dvb-usb/dibusb-common.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
static int debug;
1515
module_param(debug, int, 0644);
1616
MODULE_PARM_DESC(debug, "set debugging level (1=info (|-able))." DVB_USB_DEBUG_STATUS);
17+
MODULE_DESCRIPTION("Common methods for dibusb-based receivers");
1718
MODULE_LICENSE("GPL");
1819

1920
#define deb_info(args...) dprintk(debug,0x01,args)

drivers/media/usb/dvb-usb/dibusb-mc-common.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include "dibusb.h"
1010

11+
MODULE_DESCRIPTION("Common methods for DIB3000MC");
1112
MODULE_LICENSE("GPL");
1213

1314
/* 3000MC/P stuff */

0 commit comments

Comments
 (0)