From b85d2e3ed557622b72e5a517ec03316921c7351b Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Thu, 25 Jan 2007 16:30:38 -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 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c index 3386255..df34522 100644 --- a/arch/arm/plat-omap/common.c +++ b/arch/arm/plat-omap/common.c @@ -171,8 +171,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 -- 1.4.4.2