summaryrefslogtreecommitdiffstats
path: root/include/asm-arm/arch-sa1100/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-arm/arch-sa1100/system.h')
-rw-r--r--include/asm-arm/arch-sa1100/system.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/asm-arm/arch-sa1100/system.h b/include/asm-arm/arch-sa1100/system.h
index ca8e6330a..984a5dc0f 100644
--- a/include/asm-arm/arch-sa1100/system.h
+++ b/include/asm-arm/arch-sa1100/system.h
@@ -24,13 +24,9 @@ extern inline void arch_reset(char mode)
/* Jump into ROM at address 0 */
cpu_reset(0);
} else {
- /* Activate SA1100 watchdog and wait for the trigger... */
- OSMR3 = OSCR + 3686400/2; /* in 1/2 sec */
- OWER |= OWER_WME;
- OIER |= OIER_E3;
+ /* Use on-chip reset capability */
+ RSRR = RSRR_SWR;
}
}
-#define arch_power_off() do { } while (0)
-
#endif