diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-12-22 22:36:02 (GMT) |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-05 12:57:19 (GMT) |
commit | 1f34f0e2fb862b0399b4221a2be8589a4bfb194b (patch) | |
tree | c187dd8f589e4c476e0464ce9d4c3fa28767c21b /arch/arm/mach-s5pv210/common.c | |
parent | 5497d2e1d63bfdd707d4b19651c4127545ccd135 (diff) | |
download | linux-1f34f0e2fb862b0399b4221a2be8589a4bfb194b.tar.xz |
ARM: 7252/1: restart: S5PV210: use new restart hook
Hook these platforms restart code into the new restart hook rather
than using arch_reset().
[kgene.kim@samsung.com: according to local header, updated]
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-s5pv210/common.c')
-rw-r--r-- | arch/arm/mach-s5pv210/common.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/mach-s5pv210/common.c b/arch/arm/mach-s5pv210/common.c index 2899ee8..a4921bc 100644 --- a/arch/arm/mach-s5pv210/common.c +++ b/arch/arm/mach-s5pv210/common.c @@ -35,7 +35,6 @@ #include <plat/cpu.h> #include <plat/clock.h> #include <plat/devs.h> -#include <plat/reset.h> #include <plat/sdhci.h> #include <plat/adc-core.h> #include <plat/ata-core.h> @@ -151,7 +150,7 @@ static void s5pv210_idle(void) local_irq_enable(); } -static void s5pv210_sw_reset(void) +void s5pv210_restart(char mode, const char *cmd) { __raw_writel(0x1, S5P_SWRESET); } @@ -251,9 +250,6 @@ int __init s5pv210_init(void) /* set idle function */ pm_idle = s5pv210_idle; - /* set sw_reset function */ - s5p_reset_hook = s5pv210_sw_reset; - return sysdev_register(&s5pv210_sysdev); } |