blob: 69f80006fc80d8137d1a2b2b7497228436af1c4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* arch/arm/mach-ixp23xx/include/mach/system.h
*
* Copyright (C) 2003 Intel Corporation.
*
* 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.
*/
static inline void arch_idle(void)
{
cpu_do_idle();
}
|