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: offb: add missing MODULE_DESCRIPTION() macro

With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/video/fbdev/offb.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
15be78e0 7606e605

+1
+1
drivers/video/fbdev/offb.c
··· 717 717 } 718 718 module_exit(offb_exit); 719 719 720 + MODULE_DESCRIPTION("Open Firmware frame buffer device driver"); 720 721 MODULE_LICENSE("GPL");