Hook these platforms restart code into the new restart hook rather than using arch_reset(). Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
20 lines
330 B
C
20 lines
330 B
C
/*
|
|
* Copied from arch/arm/mach-sa1100/include/mach/system.h
|
|
* Copyright (c) 1999 Nicolas Pitre <nico@fluxnic.net>
|
|
*/
|
|
#ifndef __ASM_ARCH_SYSTEM_H
|
|
#define __ASM_ARCH_SYSTEM_H
|
|
|
|
#include <asm/proc-fns.h>
|
|
|
|
static inline void arch_idle(void)
|
|
{
|
|
cpu_do_idle();
|
|
}
|
|
|
|
static inline void arch_reset(char mode, const char *cmd)
|
|
{
|
|
}
|
|
|
|
#endif
|