Skip to content

Commit f709f1c

Browse files
Jeff Johnsonhdeller
authored andcommitted
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 <[email protected]> Signed-off-by: Helge Deller <[email protected]>
1 parent d6161b7 commit f709f1c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

drivers/video/fbdev/matrox/matroxfb_DAC1064.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1111,4 +1111,5 @@ EXPORT_SYMBOL(matrox_G100);
11111111
EXPORT_SYMBOL(DAC1064_global_init);
11121112
EXPORT_SYMBOL(DAC1064_global_restore);
11131113
#endif
1114+
MODULE_DESCRIPTION("Matrox Mystique/G100 output driver");
11141115
MODULE_LICENSE("GPL");

drivers/video/fbdev/matrox/matroxfb_Ti3026.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -746,4 +746,5 @@ struct matrox_switch matrox_millennium = {
746746
};
747747
EXPORT_SYMBOL(matrox_millennium);
748748
#endif
749+
MODULE_DESCRIPTION("Matrox Millennium output driver");
749750
MODULE_LICENSE("GPL");

drivers/video/fbdev/matrox/matroxfb_accel.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,4 +517,5 @@ static void matroxfb_imageblit(struct fb_info* info, const struct fb_image* imag
517517
}
518518
}
519519

520+
MODULE_DESCRIPTION("Accelerated fbops for Matrox Millennium/Mystique/G100/G200/G400/G450/G550");
520521
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)