From: Jeff Johnson Date: Wed, 12 Jun 2024 22:01:11 +0000 (-0700) Subject: fbdev: goldfishfb: add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~137^2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4d52c0ea3ded15ee0634f6679629a620ebf35d2;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Helge Deller --- diff --git a/drivers/video/fbdev/goldfishfb.c b/drivers/video/fbdev/goldfishfb.c index ca9e8255947cf..5f8de1ec23c3c 100644 --- a/drivers/video/fbdev/goldfishfb.c +++ b/drivers/video/fbdev/goldfishfb.c @@ -321,4 +321,5 @@ static struct platform_driver goldfish_fb_driver = { module_platform_driver(goldfish_fb_driver); +MODULE_DESCRIPTION("Goldfish Virtual Platform Framebuffer driver"); MODULE_LICENSE("GPL v2");