diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-12-09 02:37:57 +0100 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-01-02 07:51:25 +0100 |
commit | f990544125b7599e537dbb17c511e68f2dbdb910 (patch) | |
tree | 62f4bdd027569001e669ef741d4d05a661825e2b /drivers/video/omap/lcd_htcherald.c | |
parent | OMAPDSS: APPLY: move check functions (diff) | |
download | linux-f990544125b7599e537dbb17c511e68f2dbdb910.tar.xz linux-f990544125b7599e537dbb17c511e68f2dbdb910.zip |
video: omap: Staticise non-exported symbols
These symbols are not used outside it's driver so no need to
make the symbol global.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap/lcd_htcherald.c')
-rw-r--r-- | drivers/video/omap/lcd_htcherald.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap/lcd_htcherald.c b/drivers/video/omap/lcd_htcherald.c index 4802419da83b..b1a022f52a39 100644 --- a/drivers/video/omap/lcd_htcherald.c +++ b/drivers/video/omap/lcd_htcherald.c @@ -104,7 +104,7 @@ static int htcherald_panel_resume(struct platform_device *pdev) return 0; } -struct platform_driver htcherald_panel_driver = { +static struct platform_driver htcherald_panel_driver = { .probe = htcherald_panel_probe, .remove = htcherald_panel_remove, .suspend = htcherald_panel_suspend, |