Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

video: console: add missing MODULE_DESCRIPTION() macros

With ARCH=i386, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/video/console/mdacon.o

Add the missing invocation of the MODULE_DESCRIPTION() macro to all
files which have a MODULE_LICENSE().

This includes three other files which, although they did not produce a
warning with the i386 allmodconfig configuration, may cause this
warning with other configurations.

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
3402302c 2d939370

+4
+1
drivers/video/console/mdacon.c
··· 561 561 module_init(mda_console_init); 562 562 module_exit(mda_console_exit); 563 563 564 + MODULE_DESCRIPTION("MDA based console driver"); 564 565 MODULE_LICENSE("GPL"); 565 566
+1
drivers/video/console/newport_con.c
··· 744 744 }; 745 745 module_driver(newport_driver, gio_register_driver, gio_unregister_driver); 746 746 747 + MODULE_DESCRIPTION("SGI Newport console driver"); 747 748 MODULE_LICENSE("GPL");
+1
drivers/video/console/sticon.c
··· 391 391 } 392 392 393 393 module_init(sticonsole_init); 394 + MODULE_DESCRIPTION("HP STI console driver"); 394 395 MODULE_LICENSE("GPL");
+1
drivers/video/console/vgacon.c
··· 1222 1222 vga_si = si; 1223 1223 } 1224 1224 1225 + MODULE_DESCRIPTION("VGA based console driver"); 1225 1226 MODULE_LICENSE("GPL");