diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-03 19:50:44 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-05 12:57:09 +0000 |
commit | da908260f21225d6f19ab29cfa401e550000eeae (patch) | |
tree | 6416ee1ee5a49b96c41c3bcb90aadb35a877222f /arch/arm/mach-ebsa110/include | |
parent | 6ca6ff972d5b045de1012a4046b4de5405dc4c7a (diff) | |
download | linux-da908260f21225d6f19ab29cfa401e550000eeae.tar.gz linux-da908260f21225d6f19ab29cfa401e550000eeae.tar.bz2 linux-da908260f21225d6f19ab29cfa401e550000eeae.zip |
ARM: restart: ebsa110: use new restart hook
Hook the EBSA110 platform restart code into the new restart hook rather
than using arch_reset().
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-ebsa110/include')
-rw-r--r-- | arch/arm/mach-ebsa110/include/mach/system.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-ebsa110/include/mach/system.h b/arch/arm/mach-ebsa110/include/mach/system.h index 0d5df72a03f6..574e63385d0e 100644 --- a/arch/arm/mach-ebsa110/include/mach/system.h +++ b/arch/arm/mach-ebsa110/include/mach/system.h @@ -34,6 +34,8 @@ static inline void arch_idle(void) asm volatile ("mcr p15, 0, ip, c15, c1, 2" : : : "cc"); } -#define arch_reset(mode, cmd) soft_restart(0x80000000) +static inline void arch_reset(char mode, const char *cmd) +{ +} #endif |