Home
last modified time | relevance | path

Searched hist:fb11c9c63f995afbe0e909f061d9866a722cb4bf (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/cpuidle/
H A Dcpuidle.cdiff fb11c9c63f995afbe0e909f061d9866a722cb4bf Thu Oct 03 17:56:48 CEST 2013 Viresh Kumar <viresh.kumar@linaro.org> cpuidle: reduce code duplication inside cpuidle_idle_call()

We are doing this twice in cpuidle_idle_call() routine:
drv->states[next_state].flags & CPUIDLE_FLAG_TIMER_STOP

Would be better if we actually store this in a local variable and
use that. That reduces code duplication and likely makes this piece
of code run faster (in case the compiler wasn't able to optimize it
earlier)

[rjw: Cast the result of bitwise AND to bool explicitly using !!]
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>