|
@@ -228,8 +228,10 @@ static void __init omap2_gp_clocksource_init(void)
|
|
static void __init omap2_gp_timer_init(void)
|
|
static void __init omap2_gp_timer_init(void)
|
|
{
|
|
{
|
|
#ifdef CONFIG_LOCAL_TIMERS
|
|
#ifdef CONFIG_LOCAL_TIMERS
|
|
- twd_base = ioremap(OMAP44XX_LOCAL_TWD_BASE, SZ_256);
|
|
|
|
- BUG_ON(!twd_base);
|
|
|
|
|
|
+ if (cpu_is_omap44xx()) {
|
|
|
|
+ twd_base = ioremap(OMAP44XX_LOCAL_TWD_BASE, SZ_256);
|
|
|
|
+ BUG_ON(!twd_base);
|
|
|
|
+ }
|
|
#endif
|
|
#endif
|
|
omap_dm_timer_init();
|
|
omap_dm_timer_init();
|
|
|
|
|