diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-05 09:48:33 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-05 13:57:20 +0100 |
commit | abea3f2ce05f57e185b080e4a313f9fb519a0ecb (patch) | |
tree | 276a3714bd1b97418b73f46ec0522e0b4a69a584 /arch/arm/mach-tegra/include | |
parent | ARM: restart: spear: use new restart hook (diff) | |
download | linux-abea3f2ce05f57e185b080e4a313f9fb519a0ecb.tar.xz linux-abea3f2ce05f57e185b080e4a313f9fb519a0ecb.zip |
ARM: restart: tegra: use new restart hook
Hook these platforms 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-tegra/include')
-rw-r--r-- | arch/arm/mach-tegra/include/mach/system.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-tegra/include/mach/system.h b/arch/arm/mach-tegra/include/mach/system.h index 027c4215d313..b87b8a4bc30a 100644 --- a/arch/arm/mach-tegra/include/mach/system.h +++ b/arch/arm/mach-tegra/include/mach/system.h @@ -21,9 +21,9 @@ #ifndef __MACH_TEGRA_SYSTEM_H #define __MACH_TEGRA_SYSTEM_H -#include <mach/iomap.h> - -extern void (*arch_reset)(char mode, const char *cmd); +static inline void arch_reset(char mode, const char *cmd) +{ +} static inline void arch_idle(void) { |