diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2014-11-14 10:53:57 -0500 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2014-11-21 18:39:36 -0500 |
commit | b50e7df946138399832af8f2b067fa6c3256a005 (patch) | |
tree | ec5b7581adc94bb3401ae5e9df3e9d5c65abaa3f | |
parent | 76e68684ff8b3e8b07bbf9e38a99600e891774f5 (diff) |
ARM: imx: Remove unneeded .map_io initialization
If machine_desc.map_io is not set, devicemaps_init() in the common ARM
code will call debug_ll_io_init().
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
-rw-r--r-- | arch/arm/mach-imx/mach-imx6sl.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-imx/mach-imx6sx.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/mach-imx6sl.c b/arch/arm/mach-imx/mach-imx6sl.c index 65f4b0df9b0a..24bfaaf944c8 100644 --- a/arch/arm/mach-imx/mach-imx6sl.c +++ b/arch/arm/mach-imx/mach-imx6sl.c | |||
@@ -74,7 +74,6 @@ static const char * const imx6sl_dt_compat[] __initconst = { | |||
74 | }; | 74 | }; |
75 | 75 | ||
76 | DT_MACHINE_START(IMX6SL, "Freescale i.MX6 SoloLite (Device Tree)") | 76 | DT_MACHINE_START(IMX6SL, "Freescale i.MX6 SoloLite (Device Tree)") |
77 | .map_io = debug_ll_io_init, | ||
78 | .init_irq = imx6sl_init_irq, | 77 | .init_irq = imx6sl_init_irq, |
79 | .init_machine = imx6sl_init_machine, | 78 | .init_machine = imx6sl_init_machine, |
80 | .init_late = imx6sl_init_late, | 79 | .init_late = imx6sl_init_late, |
diff --git a/arch/arm/mach-imx/mach-imx6sx.c b/arch/arm/mach-imx/mach-imx6sx.c index ccee19cf825d..4111c0fa8d09 100644 --- a/arch/arm/mach-imx/mach-imx6sx.c +++ b/arch/arm/mach-imx/mach-imx6sx.c | |||
@@ -51,7 +51,6 @@ static const char * const imx6sx_dt_compat[] __initconst = { | |||
51 | }; | 51 | }; |
52 | 52 | ||
53 | DT_MACHINE_START(IMX6SX, "Freescale i.MX6 SoloX (Device Tree)") | 53 | DT_MACHINE_START(IMX6SX, "Freescale i.MX6 SoloX (Device Tree)") |
54 | .map_io = debug_ll_io_init, | ||
55 | .init_irq = imx6sx_init_irq, | 54 | .init_irq = imx6sx_init_irq, |
56 | .init_machine = imx6sx_init_machine, | 55 | .init_machine = imx6sx_init_machine, |
57 | .dt_compat = imx6sx_dt_compat, | 56 | .dt_compat = imx6sx_dt_compat, |