system.h 315 字节
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Copied from arch/arm/mach-sa1100/include/mach/system.h
3
 * Copyright (c) 1999 Nicolas Pitre <nico@fluxnic.net>
L
Linus Torvalds 已提交
4 5 6
 */
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H
7

8
#include <asm/proc-fns.h>
L
Linus Torvalds 已提交
9 10 11 12 13 14

static inline void arch_idle(void)
{
	cpu_do_idle();
}

15
extern void (*arch_reset)(char, const char *);
16

L
Linus Torvalds 已提交
17
#endif