From: Sachin Kamat Date: Thu, 27 Jun 2013 23:50:54 +0000 (+1000) Subject: drivers/video/imxfb.c: make local symbols static X-Git-Tag: next-20130628~3^2~672 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=55152248bf524057688ab6742a20a71ed46e9d0b;p=karo-tx-linux.git drivers/video/imxfb.c: make local symbols static These symbols are used only in this file. Make them static. Signed-off-by: Sachin Kamat Signed-off-by: Andrew Morton --- diff --git a/drivers/video/imxfb.c b/drivers/video/imxfb.c index 0abf2bf20836..0a16d82d8384 100644 --- a/drivers/video/imxfb.c +++ b/drivers/video/imxfb.c @@ -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();