diff options
Diffstat (limited to 'include/asm-arm/arch-rpc')
-rw-r--r-- | include/asm-arm/arch-rpc/system.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-arm/arch-rpc/system.h b/include/asm-arm/arch-rpc/system.h index c5100fd1a..1282c9505 100644 --- a/include/asm-arm/arch-rpc/system.h +++ b/include/asm-arm/arch-rpc/system.h @@ -18,8 +18,8 @@ extern __inline__ void arch_reset(char mode) outb(0, IOMD_ROMCR0); - __asm__ __volatile__( - "mcr p15, 0, %0, c1, c0, 0\n\t" - "mov pc, #0" - : : "r" (cpu_reset())); + /* + * Jump into the ROM + */ + cpu_reset(0); } |