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

Configure Feed

Select the types of activity you want to include in your feed.

fbdev: vfb: add missing MODULE_DESCRIPTION() macro

With ARCH=x86, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/video/fbdev/vfb.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by

Jeff Johnson and committed by
Helge Deller
7606e605 47856a63

+1
+1
drivers/video/fbdev/vfb.c
··· 546 546 547 547 module_exit(vfb_exit); 548 548 549 + MODULE_DESCRIPTION("Virtual Frame Buffer driver"); 549 550 MODULE_LICENSE("GPL"); 550 551 #endif /* MODULE */