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

With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/video/fbdev/goldfishfb.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
e4d52c0e b4bc18a0

+1
+1
drivers/video/fbdev/goldfishfb.c
··· 321 321 322 322 module_platform_driver(goldfish_fb_driver); 323 323 324 + MODULE_DESCRIPTION("Goldfish Virtual Platform Framebuffer driver"); 324 325 MODULE_LICENSE("GPL v2");