projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21810ee
)
video: imxfb: Make local symbols static
author
Sachin Kamat
<sachin.kamat@linaro.org>
Fri, 10 May 2013 11:55:08 +0000
(17:25 +0530)
committer
Tomi Valkeinen
<tomi.valkeinen@ti.com>
Wed, 26 Jun 2013 11:51:19 +0000
(14:51 +0300)
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>
drivers/video/imxfb.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/video/imxfb.c
b/drivers/video/imxfb.c
index c1945b3590e517223d1b42434ae0c390696b7677..12af22ba4d928e0e3e8f9c954fb545d738cd0f1b 100644
(file)
--- 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();