]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/video/imxfb.c: make local symbols static
authorSachin Kamat <sachin.kamat@linaro.org>
Wed, 19 Jun 2013 00:05:28 +0000 (10:05 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 19 Jun 2013 07:12:42 +0000 (17:12 +1000)
These symbols are used only in this file.  Make them static.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/video/imxfb.c

index 0abf2bf2083604c48006a63682c410c7125109fb..0a16d82d838448f82b38e54a9c391baca8e3daed 100644 (file)
@@ -960,7 +960,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;
@@ -999,7 +999,7 @@ static int imxfb_setup(void)
        return 0;
 }
 
-int __init imxfb_init(void)
+static int __init imxfb_init(void)
 {
        int ret = imxfb_setup();