aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2013-11-01 16:39:28 +0800
committerShawn Guo <shawn.guo@linaro.org>2013-12-09 13:18:24 +0800
commit5a269d22848777ad088e2d7883861cedc64972cf (patch)
treee2a8bd5f28bbb39649fb451d7cb74267179368f3
parentARM: imx_v6_v7_defconfig: Enable tsc2007 support. (diff)
downloadlinux-dev-5a269d22848777ad088e2d7883861cedc64972cf.tar.xz
linux-dev-5a269d22848777ad088e2d7883861cedc64972cf.zip
ARM: imx: remove mxc_iomux_v3_init() call from imx53_init_early()
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>
-rw-r--r--arch/arm/mach-imx/mm-imx5.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/arm/mach-imx/mm-imx5.c b/arch/arm/mach-imx/mm-imx5.c
index d1d52600f458..4c112021aa4e 100644
--- a/arch/arm/mach-imx/mm-imx5.c
+++ b/arch/arm/mach-imx/mm-imx5.c
@@ -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();
}