diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-10 07:55:08 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-06-26 07:51:19 -0400 |
commit | 486dd6d305ddf6229011e23226416b179425ca23 (patch) | |
tree | 52c1af44ae40fd4ff3db5d3fb6bb83577da1d9a7 /drivers/video | |
parent | 21810ee8f465b53fd2aa3dd0839b282746921251 (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.c | 4 |
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) | |||
957 | return 0; | 957 | return 0; |
958 | } | 958 | } |
959 | 959 | ||
960 | void imxfb_shutdown(struct platform_device * dev) | 960 | static void imxfb_shutdown(struct platform_device *dev) |
961 | { | 961 | { |
962 | struct fb_info *info = platform_get_drvdata(dev); | 962 | struct fb_info *info = platform_get_drvdata(dev); |
963 | struct imxfb_info *fbi = info->par; | 963 | struct imxfb_info *fbi = info->par; |
@@ -996,7 +996,7 @@ static int imxfb_setup(void) | |||
996 | return 0; | 996 | return 0; |
997 | } | 997 | } |
998 | 998 | ||
999 | int __init imxfb_init(void) | 999 | static int __init imxfb_init(void) |
1000 | { | 1000 | { |
1001 | int ret = imxfb_setup(); | 1001 | int ret = imxfb_setup(); |
1002 | 1002 | ||