diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-12 15:01:11 -0700 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-06-13 23:10:41 +0200 |
commit | e4d52c0ea3ded15ee0634f6679629a620ebf35d2 (patch) | |
tree | fab9842a80a91d3f38c1b2b23949b236ee5c2aa5 /drivers/video/fbdev | |
parent | b4bc18a0a6ba7a3ee83277c5b0705cb87ba10b52 (diff) |
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>
Diffstat (limited to 'drivers/video/fbdev')
-rw-r--r-- | drivers/video/fbdev/goldfishfb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/fbdev/goldfishfb.c b/drivers/video/fbdev/goldfishfb.c index ca9e8255947c..5f8de1ec23c3 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"); |