mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 15:43:59 +08:00
114c19b7b5
Hook these platforms restart code into the new restart hook rather than using arch_reset(). Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
32 lines
630 B
C
32 lines
630 B
C
/*
|
|
* arch/arm/mach-s3c2410/include/mach/system.h
|
|
*
|
|
* Copyright (C) 2006 Simtec Electronics
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
*
|
|
* KS8695 - System function defines and includes
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_SYSTEM_H
|
|
#define __ASM_ARCH_SYSTEM_H
|
|
|
|
static void arch_idle(void)
|
|
{
|
|
/*
|
|
* This should do all the clock switching
|
|
* and wait for interrupt tricks,
|
|
*/
|
|
cpu_do_idle();
|
|
|
|
}
|
|
|
|
static void arch_reset(char mode, const char *cmd)
|
|
{
|
|
}
|
|
|
|
#endif
|