ARM: mach-imx: mach-imx6q: Fix sparse warnings
authorFabio Estevam <fabio.estevam@freescale.com>
Mon, 25 Mar 2013 12:20:44 +0000 (09:20 -0300)
committerShawn Guo <shawn.guo@linaro.org>
Mon, 1 Apr 2013 08:17:52 +0000 (16:17 +0800)
Fix the following sparse warnings:

arch/arm/mach-imx/mach-imx6q.c:60:6: warning: symbol 'imx6q_restart' was not declared. Should it be static?
arch/arm/mach-imx/mach-imx6q.c:223:24: warning: symbol 'imx6q_cpufreq_pdev' was not declared. Should it be static?

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
arch/arm/mach-imx/mach-imx6q.c

index 9ffd103b27e4da660f229cca79359a36fbeb1d38..fe1b7aafabdcc3cb208978217bc85e46520174ff 100644 (file)
@@ -73,7 +73,7 @@ static int imx6q_revision(void)
        }
 }
 
-void imx6q_restart(char mode, const char *cmd)
+static void imx6q_restart(char mode, const char *cmd)
 {
        struct device_node *np;
        void __iomem *wdog_base;
@@ -256,7 +256,7 @@ put_node:
        of_node_put(np);
 }
 
-struct platform_device imx6q_cpufreq_pdev = {
+static struct platform_device imx6q_cpufreq_pdev = {
        .name = "imx6q-cpufreq",
 };