Skip to content

Commit 1bde9f2

Browse files
arndbbzolnier
authored andcommitted
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: 81c44c2 ("video/omap: fix modular build") Cc: Imre Deak <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]> [b.zolnierkie: minor fixups] Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]>
1 parent 3d1d40b commit 1bde9f2

File tree

9 files changed

+36
-0
lines changed

9 files changed

+36
-0
lines changed

drivers/video/fbdev/omap/lcd_ams_delta.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,3 +197,7 @@ static struct platform_driver ams_delta_panel_driver = {
197197
};
198198

199199
module_platform_driver(ams_delta_panel_driver);
200+
201+
MODULE_AUTHOR("Jonathan McDowell <[email protected]>");
202+
MODULE_DESCRIPTION("LCD panel support for the Amstrad E3 (Delta) videophone");
203+
MODULE_LICENSE("GPL");

drivers/video/fbdev/omap/lcd_h3.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,7 @@ static struct platform_driver h3_panel_driver = {
8989
};
9090

9191
module_platform_driver(h3_panel_driver);
92+
93+
MODULE_AUTHOR("Imre Deak");
94+
MODULE_DESCRIPTION("LCD panel support for the TI OMAP H3 board");
95+
MODULE_LICENSE("GPL");

drivers/video/fbdev/omap/lcd_htcherald.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,7 @@ static struct platform_driver htcherald_panel_driver = {
6666
};
6767

6868
module_platform_driver(htcherald_panel_driver);
69+
70+
MODULE_AUTHOR("Cory Maccarrone");
71+
MODULE_LICENSE("GPL");
72+
MODULE_DESCRIPTION("LCD panel support for the HTC Herald");

drivers/video/fbdev/omap/lcd_inn1510.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,7 @@ static struct platform_driver innovator1510_panel_driver = {
7373
};
7474

7575
module_platform_driver(innovator1510_panel_driver);
76+
77+
MODULE_AUTHOR("Imre Deak");
78+
MODULE_DESCRIPTION("LCD panel support for the TI OMAP1510 Innovator board");
79+
MODULE_LICENSE("GPL");

drivers/video/fbdev/omap/lcd_inn1610.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,7 @@ static struct platform_driver innovator1610_panel_driver = {
106106
};
107107

108108
module_platform_driver(innovator1610_panel_driver);
109+
110+
MODULE_AUTHOR("Imre Deak");
111+
MODULE_DESCRIPTION("LCD panel support for the TI OMAP1610 Innovator board");
112+
MODULE_LICENSE("GPL");

drivers/video/fbdev/omap/lcd_osk.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,7 @@ static struct platform_driver osk_panel_driver = {
9393
};
9494

9595
module_platform_driver(osk_panel_driver);
96+
97+
MODULE_AUTHOR("Imre Deak");
98+
MODULE_DESCRIPTION("LCD panel support for the TI OMAP OSK board");
99+
MODULE_LICENSE("GPL");

drivers/video/fbdev/omap/lcd_palmte.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,7 @@ static struct platform_driver palmte_panel_driver = {
5959
};
6060

6161
module_platform_driver(palmte_panel_driver);
62+
63+
MODULE_AUTHOR("Romain Goyet <[email protected]>, Laurent Gonzalez <[email protected]>");
64+
MODULE_DESCRIPTION("LCD panel support for the Palm Tungsten E");
65+
MODULE_LICENSE("GPL");

drivers/video/fbdev/omap/lcd_palmtt.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,7 @@ static struct platform_driver palmtt_panel_driver = {
7272
};
7373

7474
module_platform_driver(palmtt_panel_driver);
75+
76+
MODULE_AUTHOR("Marek Vasut <[email protected]>");
77+
MODULE_DESCRIPTION("LCD panel support for Palm Tungsten|T");
78+
MODULE_LICENSE("GPL");

drivers/video/fbdev/omap/lcd_palmz71.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,7 @@ static struct platform_driver palmz71_panel_driver = {
6666
};
6767

6868
module_platform_driver(palmz71_panel_driver);
69+
70+
MODULE_AUTHOR("Romain Goyet, Laurent Gonzalez, Marek Vasut");
71+
MODULE_LICENSE("GPL");
72+
MODULE_DESCRIPTION("LCD panel support for the Palm Zire71");

0 commit comments

Comments
 (0)