2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2008-08-05 15:14:15 +00:00
|
|
|
* Copied from arch/arm/mach-sa1100/include/mach/system.h
|
2009-09-14 07:25:28 +00:00
|
|
|
* Copyright (c) 1999 Nicolas Pitre <nico@fluxnic.net>
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_SYSTEM_H
|
|
|
|
#define __ASM_ARCH_SYSTEM_H
|
2006-01-07 16:15:52 +00:00
|
|
|
|
2011-01-28 00:39:45 +00:00
|
|
|
#include <asm/proc-fns.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static inline void arch_idle(void)
|
|
|
|
{
|
|
|
|
cpu_do_idle();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|