diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-05 11:16:05 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-05 12:57:12 +0000 |
commit | 00e9967e0dfa0d4c871ac3be5bd1cb28348e68d3 (patch) | |
tree | 4ed99fcc10087a4681a76e4722e717d945d15f9b /arch/arm/mach-highbank/include | |
parent | 0d68370b246dad8c4a94c3a49d700622664ad89a (diff) | |
download | talos-op-linux-00e9967e0dfa0d4c871ac3be5bd1cb28348e68d3.tar.gz talos-op-linux-00e9967e0dfa0d4c871ac3be5bd1cb28348e68d3.zip |
ARM: restart: highbank: use new restart hook
Hook these platforms restart code into the new restart hook rather
than using arch_reset().
Acked-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-highbank/include')
-rw-r--r-- | arch/arm/mach-highbank/include/mach/system.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-highbank/include/mach/system.h b/arch/arm/mach-highbank/include/mach/system.h index 7e8192296cae..0754c79114b0 100644 --- a/arch/arm/mach-highbank/include/mach/system.h +++ b/arch/arm/mach-highbank/include/mach/system.h @@ -21,6 +21,8 @@ static inline void arch_idle(void) cpu_do_idle(); } -extern void arch_reset(char mode, const char *cmd); +static inline void arch_reset(char mode, const char *cmd) +{ +} #endif |