summaryrefslogtreecommitdiff
path: root/drivers/video
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-05-10 17:25:08 +0530
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-06-26 14:51:19 +0300
commit486dd6d305ddf6229011e23226416b179425ca23 (patch)
tree52c1af44ae40fd4ff3db5d3fb6bb83577da1d9a7 /drivers/video
parent21810ee8f465b53fd2aa3dd0839b282746921251 (diff)
video: imxfb: Make local symbols static
These symbols are used only in this file. Make them static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/imxfb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/imxfb.c b/drivers/video/imxfb.c
index c1945b3590e5..12af22ba4d92 100644
--- a/drivers/video/imxfb.c
+++ b/drivers/video/imxfb.c
@@ -957,7 +957,7 @@ static int imxfb_remove(struct platform_device *pdev)
return 0;
}
-void imxfb_shutdown(struct platform_device * dev)
+static void imxfb_shutdown(struct platform_device *dev)
{
struct fb_info *info = platform_get_drvdata(dev);
struct imxfb_info *fbi = info->par;
@@ -996,7 +996,7 @@ static int imxfb_setup(void)
return 0;
}
-int __init imxfb_init(void)
+static int __init imxfb_init(void)
{
int ret = imxfb_setup();