aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap/lcd_htcherald.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-12-08 20:37:57 -0500
committerTomi Valkeinen <tomi.valkeinen@ti.com>2012-01-02 01:51:25 -0500
commitf990544125b7599e537dbb17c511e68f2dbdb910 (patch)
tree62f4bdd027569001e669ef741d4d05a661825e2b /drivers/video/omap/lcd_htcherald.c
parent6ac48d1e3ac788ad1d54895acd83be26cefb4fe9 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap/lcd_htcherald.c b/drivers/video/omap/lcd_htcherald.c
index 4802419da83..b1a022f52a3 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)
104 return 0; 104 return 0;
105} 105}
106 106
107struct platform_driver htcherald_panel_driver = { 107static struct platform_driver htcherald_panel_driver = {
108 .probe = htcherald_panel_probe, 108 .probe = htcherald_panel_probe,
109 .remove = htcherald_panel_remove, 109 .remove = htcherald_panel_remove,
110 .suspend = htcherald_panel_suspend, 110 .suspend = htcherald_panel_suspend,