From 5da34206a153c30ba7461993d1e46ab04331d4e5 Mon Sep 17 00:00:00 2001 From: Khasim Syed Mohammed Date: Tue, 9 Jan 2007 15:36:37 -0800 Subject: [PATCH] ARM: OMAP: Fix OMAP2430 booting issue This patch is to fix the 2430 booting issue due to wrong base address for 32K timer Signed-off-by: Syed Mohammed Khasim Signed-off-by: Tony Lindgren --- arch/arm/plat-omap/common.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c index 453f887b024..2a72b9a4401 100644 --- a/arch/arm/plat-omap/common.c +++ b/arch/arm/plat-omap/common.c @@ -191,8 +191,10 @@ console_initcall(omap_add_serial_console); #if defined(CONFIG_ARCH_OMAP16XX) #define TIMER_32K_SYNCHRONIZED 0xfffbc410 -#elif defined(CONFIG_ARCH_OMAP24XX) +#elif defined(CONFIG_ARCH_OMAP2420) #define TIMER_32K_SYNCHRONIZED 0x48004010 +#elif defined(CONFIG_ARCH_OMAP2430) +#define TIMER_32K_SYNCHRONIZED 0x49020010 #endif #ifdef TIMER_32K_SYNCHRONIZED -- 2.41.1