summaryrefslogtreecommitdiff
path: root/drivers/video/imxfb.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-05-10 11:55:08 (GMT)
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-06-26 11:51:19 (GMT)
commit486dd6d305ddf6229011e23226416b179425ca23 (patch)
tree52c1af44ae40fd4ff3db5d3fb6bb83577da1d9a7 /drivers/video/imxfb.c
parent21810ee8f465b53fd2aa3dd0839b282746921251 (diff)
downloadlinux-486dd6d305ddf6229011e23226416b179425ca23.tar.xz
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/imxfb.c')
-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 c1945b3..12af22b 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();