]> git.karo-electronics.de Git - karo-tx-linux.git/commit
cpuidle: reduce code duplication inside cpuidle_idle_call()
authorViresh Kumar <viresh.kumar@linaro.org>
Thu, 3 Oct 2013 15:56:48 +0000 (21:26 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 30 Oct 2013 00:21:22 +0000 (01:21 +0100)
commitfb11c9c63f995afbe0e909f061d9866a722cb4bf
tree2a0f0fce4e7d3bd66cffe9d8282d5e618305b667
parent9b29a86f04f87cdb9eaacadf2e2d33a55af1c7cc
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>
drivers/cpuidle/cpuidle.c