ARM: imx legacy: qong: move peripheral initialization to .init_late
authorVladimir Zapolskiy <vz@mleia.com>
Mon, 19 Sep 2016 01:37:19 +0000 (04:37 +0300)
committerShawn Guo <shawnguo@kernel.org>
Tue, 20 Sep 2016 14:35:04 +0000 (22:35 +0800)
The change moves some of peripheral registrations and initializations
(all peripherals dependent on GPIOs) from .init_machine to .init_late
level, this allows to safely shift the shared GPIO controller driver
initialization level after init level of i.MX IOMUXC driver.

Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/mach-imx/mach-qong.c

index 34df64f..8c2cbd6 100644 (file)
@@ -251,7 +251,6 @@ static void __init qong_init(void)
 
        mxc_init_imx_uart();
        qong_init_nor_mtd();
-       qong_init_fpga();
        imx31_add_imx2_wdt();
 }
 
@@ -268,5 +267,6 @@ MACHINE_START(QONG, "Dave/DENX QongEVB-LITE")
        .init_irq = mx31_init_irq,
        .init_time      = qong_timer_init,
        .init_machine = qong_init,
+       .init_late      = qong_init_fpga,
        .restart        = mxc_restart,
 MACHINE_END