arm: process.c: Define arm_pm_idle

Define arm_pm_idle to be arch_idle which is defined in pm-8x60.c
(This code should be moved to the pm-8x60 file later on)

Change-Id: I345d436111c585e4dfbae367dac5d24d1a1f9711
Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
This commit is contained in:
Rohit Vaswani
2013-01-14 19:12:17 -08:00
committed by Stephen Boyd
parent 8f6baaa96f
commit 8636af8f7a

View File

@@ -184,7 +184,8 @@ EXPORT_SYMBOL_GPL(cpu_idle_wait);
* This is our default idle handler.
*/
void (*arm_pm_idle)(void);
extern void arch_idle(void);
void (*arm_pm_idle)(void) = arch_idle;
static void default_idle(void)
{