diff options
author | Kevin Hilman <khilman@mvista.com> | 2007-05-16 17:52:05 +0200 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2007-08-22 09:42:50 +0200 |
commit | 5c5dccad31670faa716cbc9d8a6f918487f60a09 (patch) | |
tree | 417b60bcf822f2ec2e8b32fea1210661d0288190 /arch/arm/plat-omap/common.c | |
parent | fix - ensure we don't use bootconsoles after init has been released (diff) | |
download | linux-5c5dccad31670faa716cbc9d8a6f918487f60a09.tar.xz linux-5c5dccad31670faa716cbc9d8a6f918487f60a09.zip |
ARM: OMAP: Fix 32k timer unsupported one-shot mode
Fix unsupported one-shot mode in set_mode hook.
Signed-off-by: Kevin Hilman <khilman@mvista.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/plat-omap/common.c')
-rw-r--r-- | arch/arm/plat-omap/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c index 7987aa6e95f8..4f0f9c4e938e 100644 --- a/arch/arm/plat-omap/common.c +++ b/arch/arm/plat-omap/common.c @@ -172,7 +172,7 @@ console_initcall(omap_add_serial_console); #if defined(CONFIG_ARCH_OMAP16XX) #define TIMER_32K_SYNCHRONIZED 0xfffbc410 #elif defined(CONFIG_ARCH_OMAP24XX) -#define TIMER_32K_SYNCHRONIZED 0x48004010 +#define TIMER_32K_SYNCHRONIZED (OMAP24XX_32KSYNCT_BASE + 0x10) #endif #ifdef TIMER_32K_SYNCHRONIZED |