diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-12 08:32:22 -0700 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-06-13 23:10:41 +0200 |
commit | f709f1cf65aca8e5379ca23b0faa52be6839fa75 (patch) | |
tree | 297d56a313f68a1dfac3004698a6007b9ba55eed /drivers/video/fbdev/matrox/matroxfb_Ti3026.c | |
parent | d6161b7d8b33aa8756ab2f7eed8cb371c2e7e8ed (diff) |
fbdev: matroxfb: add missing MODULE_DESCRIPTION() macros
With ARCH=x86, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/video/fbdev/matrox/matroxfb_accel.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/video/fbdev/matrox/matroxfb_DAC1064.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/video/fbdev/matrox/matroxfb_Ti3026.o
Add the missing invocations 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/matrox/matroxfb_Ti3026.c')
-rw-r--r-- | drivers/video/fbdev/matrox/matroxfb_Ti3026.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/fbdev/matrox/matroxfb_Ti3026.c b/drivers/video/fbdev/matrox/matroxfb_Ti3026.c index 5617c014da87..f53b8066e8a5 100644 --- a/drivers/video/fbdev/matrox/matroxfb_Ti3026.c +++ b/drivers/video/fbdev/matrox/matroxfb_Ti3026.c @@ -746,4 +746,5 @@ struct matrox_switch matrox_millennium = { }; EXPORT_SYMBOL(matrox_millennium); #endif +MODULE_DESCRIPTION("Matrox Millennium output driver"); MODULE_LICENSE("GPL"); |