Re: [PATCH 08/16] cris idle: delete idle and pm_idle

From: Jesper Nilsson
Date: Mon Feb 11 2013 - 03:42:59 EST


On Sun, Feb 10, 2013 at 06:58:15AM +0100, Len Brown wrote:
> From: Len Brown <len.brown@xxxxxxxxx>
>
> pm_idle() and idle() served no purpose on cris --
> invoke default_idle() directly.
>
> Signed-off-by: Len Brown <len.brown@xxxxxxxxx>
> Cc: linux-cris-kernel@xxxxxxxx

Looks good!

Acked-by: Jesper Nilsson <jesper.nilsson@xxxxxxxx>

> ---
> arch/cris/kernel/process.c | 11 +----------
> 1 file changed, 1 insertion(+), 10 deletions(-)
>
> diff --git a/arch/cris/kernel/process.c b/arch/cris/kernel/process.c
> index 7f65be6..104ff4d 100644
> --- a/arch/cris/kernel/process.c
> +++ b/arch/cris/kernel/process.c
> @@ -54,11 +54,6 @@ void enable_hlt(void)
>
> EXPORT_SYMBOL(enable_hlt);
>
> -/*
> - * The following aren't currently used.
> - */
> -void (*pm_idle)(void);
> -
> extern void default_idle(void);
>
> void (*pm_power_off)(void);
> @@ -77,16 +72,12 @@ void cpu_idle (void)
> while (1) {
> rcu_idle_enter();
> while (!need_resched()) {
> - void (*idle)(void);
> /*
> * Mark this as an RCU critical section so that
> * synchronize_kernel() in the unload path waits
> * for our completion.
> */
> - idle = pm_idle;
> - if (!idle)
> - idle = default_idle;
> - idle();
> + default_idle();
> }
> rcu_idle_exit();
> schedule_preempt_disabled();
> --
> 1.8.1.3.535.ga923c31

/^JN - Jesper Nilsson
--
Jesper Nilsson -- jesper.nilsson@xxxxxxxx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/