Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da908260 authored by Russell King's avatar Russell King
Browse files

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: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 6ca6ff97
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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
+3 −1
Original line number Diff line number Diff line
@@ -34,6 +34,8 @@ static inline void arch_idle(void)
	asm volatile ("mcr p15, 0, ip, c15, c1, 2" : : : "cc");
}

#define arch_reset(mode, cmd)	soft_restart(0x80000000)
static inline void arch_reset(char mode, const char *cmd)
{
}

#endif