video/omap: add module license tags
I got a bunch of warnings in a randconfig build:
WARNING: modpost: missing MODULE_LICENSE() in drivers/video/fbdev/omap/lcd_ams_delta.o
WARNING: modpost: missing MODULE_LICENSE() in drivers/video/fbdev/omap/lcd_inn1510.o
WARNING: modpost: missing MODULE_LICENSE() in drivers/video/fbdev/omap/lcd_palmte.o
WARNING: modpost: missing MODULE_LICENSE() in drivers/video/fbdev/omap/lcd_palmtt.o
These come from an earlier patch of mine that turned all display drivers
into separate modules. The fix is to add a MODULE_LICENSE tag. Since I'm
doing that, adding a description and author field also makes sense. I
went by the authors listed in the comment at the top of each file, but
removed Imre's Nokia email address that I assume is not valid any more,
since Imre is working at Intel these days.
Fixes: 81c44c2b2c
("video/omap: fix modular build")
Cc: Imre Deak <imre.deak@intel.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
[b.zolnierkie: minor fixups]
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
parent
3d1d40b6a6
commit
1bde9f2cf1
|
@ -197,3 +197,7 @@ static struct platform_driver ams_delta_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(ams_delta_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Jonathan McDowell <noodles@earth.li>");
|
||||
MODULE_DESCRIPTION("LCD panel support for the Amstrad E3 (Delta) videophone");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -89,3 +89,7 @@ static struct platform_driver h3_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(h3_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Imre Deak");
|
||||
MODULE_DESCRIPTION("LCD panel support for the TI OMAP H3 board");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -66,3 +66,7 @@ static struct platform_driver htcherald_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(htcherald_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Cory Maccarrone");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_DESCRIPTION("LCD panel support for the HTC Herald");
|
||||
|
|
|
@ -73,3 +73,7 @@ static struct platform_driver innovator1510_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(innovator1510_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Imre Deak");
|
||||
MODULE_DESCRIPTION("LCD panel support for the TI OMAP1510 Innovator board");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -106,3 +106,7 @@ static struct platform_driver innovator1610_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(innovator1610_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Imre Deak");
|
||||
MODULE_DESCRIPTION("LCD panel support for the TI OMAP1610 Innovator board");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -93,3 +93,7 @@ static struct platform_driver osk_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(osk_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Imre Deak");
|
||||
MODULE_DESCRIPTION("LCD panel support for the TI OMAP OSK board");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -59,3 +59,7 @@ static struct platform_driver palmte_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(palmte_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Romain Goyet <r.goyet@gmail.com>, Laurent Gonzalez <palmte.linux@free.fr>");
|
||||
MODULE_DESCRIPTION("LCD panel support for the Palm Tungsten E");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -72,3 +72,7 @@ static struct platform_driver palmtt_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(palmtt_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
|
||||
MODULE_DESCRIPTION("LCD panel support for Palm Tungsten|T");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -66,3 +66,7 @@ static struct platform_driver palmz71_panel_driver = {
|
|||
};
|
||||
|
||||
module_platform_driver(palmz71_panel_driver);
|
||||
|
||||
MODULE_AUTHOR("Romain Goyet, Laurent Gonzalez, Marek Vasut");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_DESCRIPTION("LCD panel support for the Palm Zire71");
|
||||
|
|
Loading…
Reference in New Issue