mirror of https://gitee.com/openkylin/linux.git
sched/idle, ARM: Remove redundant cpuidle_idle_call()
The core idle loop now takes care of it. Signed-off-by: Nicolas Pitre <nico@linaro.org> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> Cc: Preeti U Murthy <preeti@linux.vnet.ibm.com> Cc: Paul Mundt <lethal@linux-sh.org> Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net> Cc: linux-arm-kernel@lists.infradead.org Cc: linuxppc-dev@lists.ozlabs.org Cc: linux-sh@vger.kernel.org Cc: linux-pm@vger.kernel.org Cc: Russell King <linux@arm.linux.org.uk> Cc: linaro-kernel@lists.linaro.org Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/n/tip-y2nbw5j3ma5siy5584919z5i@git.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
af8cd8ef72
commit
ad68cc7a77
|
@ -30,7 +30,6 @@
|
||||||
#include <linux/uaccess.h>
|
#include <linux/uaccess.h>
|
||||||
#include <linux/random.h>
|
#include <linux/random.h>
|
||||||
#include <linux/hw_breakpoint.h>
|
#include <linux/hw_breakpoint.h>
|
||||||
#include <linux/cpuidle.h>
|
|
||||||
#include <linux/leds.h>
|
#include <linux/leds.h>
|
||||||
#include <linux/reboot.h>
|
#include <linux/reboot.h>
|
||||||
|
|
||||||
|
@ -133,7 +132,11 @@ EXPORT_SYMBOL_GPL(arm_pm_restart);
|
||||||
|
|
||||||
void (*arm_pm_idle)(void);
|
void (*arm_pm_idle)(void);
|
||||||
|
|
||||||
static void default_idle(void)
|
/*
|
||||||
|
* Called from the core idle loop.
|
||||||
|
*/
|
||||||
|
|
||||||
|
void arch_cpu_idle(void)
|
||||||
{
|
{
|
||||||
if (arm_pm_idle)
|
if (arm_pm_idle)
|
||||||
arm_pm_idle();
|
arm_pm_idle();
|
||||||
|
@ -167,15 +170,6 @@ void arch_cpu_idle_dead(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
|
||||||
* Called from the core idle loop.
|
|
||||||
*/
|
|
||||||
void arch_cpu_idle(void)
|
|
||||||
{
|
|
||||||
if (cpuidle_idle_call())
|
|
||||||
default_idle();
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Called by kexec, immediately prior to machine_kexec().
|
* Called by kexec, immediately prior to machine_kexec().
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue