diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2012-01-03 14:02:03 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-05 12:57:18 +0000 |
commit | b27b072791dc83324f180007b03ac0b5a8455a2d (patch) | |
tree | 82a5a03cc0a76399f5a3d86be8db67de998ac6be /arch/arm/mach-s3c2410/include/mach | |
parent | 57538975917d4b0c467dbdd21328337f059bc027 (diff) | |
download | linux-b27b072791dc83324f180007b03ac0b5a8455a2d.tar.bz2 |
ARM: 7265/1: restart: S3C24XX: use new restart hook
Hook these platforms restart code into the new restart hook rather
than using arch_reset().
And adds local header file, common.h in arch/arm/mach-s3c2410/ and
arch/arm/mach-s3c2440/ directories.
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2410/include/mach')
-rw-r--r-- | arch/arm/mach-s3c2410/include/mach/system-reset.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/arch/arm/mach-s3c2410/include/mach/system-reset.h b/arch/arm/mach-s3c2410/include/mach/system-reset.h index 1e495f35ddd2..e71dc5fdd3e3 100644 --- a/arch/arm/mach-s3c2410/include/mach/system-reset.h +++ b/arch/arm/mach-s3c2410/include/mach/system-reset.h @@ -10,18 +10,6 @@ * published by the Free Software Foundation. */ -#include <mach/hardware.h> -#include <plat/watchdog-reset.h> - -static void -arch_reset(char mode, const char *cmd) +static void arch_reset(char mode, const char *cmd) { - if (mode == 's') { - soft_restart(0); - } - - arch_wdt_reset(); - - /* we'll take a jump through zero as a poor second */ - soft_restart(0); } |