mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
fbdev: omap/lcd: Staticize non-exported lcd_panel structs
None of the lcd_panel structs defined by the OMAP LCD drivers are referenced outside of their compilation unit. Follow best practices and mark them as static. Cc: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
parent
0ed711168a
commit
b2c1e8a75b
8 changed files with 8 additions and 8 deletions
|
@ -68,7 +68,7 @@ static unsigned long h3_panel_get_caps(struct lcd_panel *panel)
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct lcd_panel h3_panel = {
|
||||
static struct lcd_panel h3_panel = {
|
||||
.name = "h3",
|
||||
.config = OMAP_LCDC_PANEL_TFT,
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ static unsigned long htcherald_panel_get_caps(struct lcd_panel *panel)
|
|||
}
|
||||
|
||||
/* Found on WIZ200 (miknix) and some HERA110 models (darkstar62) */
|
||||
struct lcd_panel htcherald_panel_1 = {
|
||||
static struct lcd_panel htcherald_panel_1 = {
|
||||
.name = "lcd_herald",
|
||||
.config = OMAP_LCDC_PANEL_TFT |
|
||||
OMAP_LCDC_INV_HSYNC |
|
||||
|
|
|
@ -53,7 +53,7 @@ static unsigned long innovator1510_panel_get_caps(struct lcd_panel *panel)
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct lcd_panel innovator1510_panel = {
|
||||
static struct lcd_panel innovator1510_panel = {
|
||||
.name = "inn1510",
|
||||
.config = OMAP_LCDC_PANEL_TFT,
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ static unsigned long innovator1610_panel_get_caps(struct lcd_panel *panel)
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct lcd_panel innovator1610_panel = {
|
||||
static struct lcd_panel innovator1610_panel = {
|
||||
.name = "inn1610",
|
||||
.config = OMAP_LCDC_PANEL_TFT,
|
||||
|
||||
|
|
|
@ -73,7 +73,7 @@ static unsigned long osk_panel_get_caps(struct lcd_panel *panel)
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct lcd_panel osk_panel = {
|
||||
static struct lcd_panel osk_panel = {
|
||||
.name = "osk",
|
||||
.config = OMAP_LCDC_PANEL_TFT,
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ static unsigned long palmte_panel_get_caps(struct lcd_panel *panel)
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct lcd_panel palmte_panel = {
|
||||
static struct lcd_panel palmte_panel = {
|
||||
.name = "palmte",
|
||||
.config = OMAP_LCDC_PANEL_TFT | OMAP_LCDC_INV_VSYNC |
|
||||
OMAP_LCDC_INV_HSYNC | OMAP_LCDC_HSVS_RISING_EDGE |
|
||||
|
|
|
@ -56,7 +56,7 @@ static unsigned long palmtt_panel_get_caps(struct lcd_panel *panel)
|
|||
return OMAPFB_CAPS_SET_BACKLIGHT;
|
||||
}
|
||||
|
||||
struct lcd_panel palmtt_panel = {
|
||||
static struct lcd_panel palmtt_panel = {
|
||||
.name = "palmtt",
|
||||
.config = OMAP_LCDC_PANEL_TFT | OMAP_LCDC_INV_VSYNC |
|
||||
OMAP_LCDC_INV_HSYNC | OMAP_LCDC_HSVS_RISING_EDGE |
|
||||
|
|
|
@ -51,7 +51,7 @@ static unsigned long palmz71_panel_get_caps(struct lcd_panel *panel)
|
|||
return OMAPFB_CAPS_SET_BACKLIGHT;
|
||||
}
|
||||
|
||||
struct lcd_panel palmz71_panel = {
|
||||
static struct lcd_panel palmz71_panel = {
|
||||
.name = "palmz71",
|
||||
.config = OMAP_LCDC_PANEL_TFT | OMAP_LCDC_INV_VSYNC |
|
||||
OMAP_LCDC_INV_HSYNC | OMAP_LCDC_HSVS_RISING_EDGE |
|
||||
|
|
Loading…
Reference in a new issue