From b6390cf6231251e08fab8791b7a031d40c106929 Mon Sep 17 00:00:00 2001 From: Lucas Stach Date: Wed, 5 Nov 2014 17:55:04 +0100 Subject: [PATCH] arm: imx53-qsrb: fix initcalls on START-R board The compatible changed when we switched to the upstream DTs, so the initcalls would not be executed on the START-R board. Signed-off-by: Lucas Stach Signed-off-by: Sascha Hauer --- arch/arm/boards/freescale-mx53-qsb/board.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm/boards/freescale-mx53-qsb/board.c b/arch/arm/boards/freescale-mx53-qsb/board.c index 9a9bffa2e..1128e686b 100644 --- a/arch/arm/boards/freescale-mx53-qsb/board.c +++ b/arch/arm/boards/freescale-mx53-qsb/board.c @@ -81,7 +81,8 @@ static int loco_late_init(void) struct mc13xxx *mc34708; int rev; - if (!of_machine_is_compatible("fsl,imx53-qsb")) + if (!of_machine_is_compatible("fsl,imx53-qsb") && + !of_machine_is_compatible("fsl,imx53-qsrb")) return 0; device_detect_by_name("mmc0"); @@ -167,7 +168,8 @@ late_initcall(loco_late_init); static int loco_postcore_init(void) { - if (!of_machine_is_compatible("fsl,imx53-qsb")) + if (!of_machine_is_compatible("fsl,imx53-qsb") && + !of_machine_is_compatible("fsl,imx53-qsrb")) return 0; imx53_init_lowlevel(1000);