From da908260f21225d6f19ab29cfa401e550000eeae Mon Sep 17 00:00:00 2001 From: Russell King Date: Thu, 3 Nov 2011 19:50:44 +0000 Subject: 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 --- arch/arm/mach-ebsa110/core.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'arch/arm/mach-ebsa110/core.c') diff --git a/arch/arm/mach-ebsa110/core.c b/arch/arm/mach-ebsa110/core.c index ce3ed244c4b0..294aad07f7a0 100644 --- a/arch/arm/mach-ebsa110/core.c +++ b/arch/arm/mach-ebsa110/core.c @@ -278,6 +278,11 @@ static int __init ebsa110_init(void) arch_initcall(ebsa110_init); +static void ebsa110_restart(char mode, const char *cmd) +{ + soft_restart(0x80000000); +} + MACHINE_START(EBSA110, "EBSA110") /* Maintainer: Russell King */ .atag_offset = 0x400, @@ -287,4 +292,5 @@ MACHINE_START(EBSA110, "EBSA110") .map_io = ebsa110_map_io, .init_irq = ebsa110_init_irq, .timer = &ebsa110_timer, + .restart = ebsa110_restart, MACHINE_END -- cgit v1.2.3-59-g8ed1b