summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Jan <s-jan@ti.com>2011-12-09 11:07:36 +0100
committerSebastien Jan <s-jan@ti.com>2011-12-09 11:07:36 +0100
commit263ea064cf00807442df13973d21bc9da2e1f6e3 (patch)
tree3626c806b5fb7e5098fa85b1b430b31119867df5
parentd0f2e6d51d17919f40adc2c9215f3cd0990dbeea (diff)
omap4460: disable SmartReflex
SR is not properly supported on this tree for 4460 and hangs at boot-time. Signed-off-by: Sebastien Jan <s-jan@ti.com>
-rw-r--r--arch/arm/mach-omap2/board-4430sdp.c3
-rw-r--r--arch/arm/mach-omap2/board-omap4panda.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c
index 4ada1dbc9864..dcc9a514e027 100644
--- a/arch/arm/mach-omap2/board-4430sdp.c
+++ b/arch/arm/mach-omap2/board-4430sdp.c
@@ -1072,7 +1072,8 @@ static void __init omap_4430sdp_init(void)
pr_err("Keypad initialization failed: %d\n", status);
omap_4430sdp_display_init();
- omap_enable_smartreflex_on_init();
+ if (cpu_is_omap443x())
+ omap_enable_smartreflex_on_init();
}
static void __init omap_4430sdp_map_io(void)
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
index a1c899374202..f019f4098d7a 100644
--- a/arch/arm/mach-omap2/board-omap4panda.c
+++ b/arch/arm/mach-omap2/board-omap4panda.c
@@ -757,7 +757,8 @@ static void __init omap4_panda_init(void)
omap4_ehci_init();
usb_musb_init(&musb_board_data);
omap4_panda_display_init();
- omap_enable_smartreflex_on_init();
+ if (cpu_is_omap443x())
+ omap_enable_smartreflex_on_init();
}
static void __init omap4_panda_map_io(void)