]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ARM: imx: remove mxc_iomux_v3_init() call from imx53_init_early()
authorShawn Guo <shawn.guo@linaro.org>
Fri, 1 Nov 2013 08:39:28 +0000 (16:39 +0800)
committerShawn Guo <shawn.guo@linaro.org>
Mon, 9 Dec 2013 05:18:24 +0000 (13:18 +0800)
Today, imx53 handles iomux configuration using pinctrl driver, so
mxc_iomux_v3_init() call in imx53_init_early() is there for nothing.
Remove the call from there.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
arch/arm/mach-imx/mm-imx5.c

index d1d52600f458c3604eb77c4bcfae51432b2a932c..4c112021aa4ef8511121a0237179a5b7a6ebcf4f 100644 (file)
@@ -89,15 +89,7 @@ void __init imx51_init_early(void)
 
 void __init imx53_init_early(void)
 {
-       struct device_node *np;
-       void __iomem *base;
-
        mxc_set_cpu_type(MXC_CPU_MX53);
-
-       np = of_find_compatible_node(NULL, NULL, "fsl,imx53-iomuxc");
-       base = of_iomap(np, 0);
-       WARN_ON(!base);
-       mxc_iomux_v3_init(base);
        imx_src_init();
 }