18 lines
290 B
C
18 lines
290 B
C
|
/*
|
||
|
* arch/arm/mach-prima2/include/mach/system.h
|
||
|
*
|
||
|
* Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
|
||
|
*
|
||
|
* Licensed under GPLv2 or later.
|
||
|
*/
|
||
|
|
||
|
#ifndef __MACH_SYSTEM_H__
|
||
|
#define __MACH_SYSTEM_H__
|
||
|
|
||
|
static inline void arch_idle(void)
|
||
|
{
|
||
|
cpu_do_idle();
|
||
|
}
|
||
|
|
||
|
#endif
|