diff options
author | Len Brown <len.brown@intel.com> | 2011-01-12 02:34:59 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-01-12 12:47:31 -0500 |
commit | d247632c08c674864d438733280422ddb7130ff8 (patch) | |
tree | d9c759480147cd867b72ceb8625554b2e7b550ed /drivers/cpuidle | |
parent | 0aae9f923bcc476a8e4725dd3ac37547b9816ee5 (diff) | |
download | linux-3.10-d247632c08c674864d438733280422ddb7130ff8.tar.gz linux-3.10-d247632c08c674864d438733280422ddb7130ff8.tar.bz2 linux-3.10-d247632c08c674864d438733280422ddb7130ff8.zip |
cpuidle: delete NOP CPUIDLE_FLAG_POLL
it serves no purpose
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/cpuidle')
-rw-r--r-- | drivers/cpuidle/cpuidle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index 37e44604130..dd5f1eafd6f 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c @@ -186,7 +186,7 @@ static void poll_idle_init(struct cpuidle_device *dev) state->exit_latency = 0; state->target_residency = 0; state->power_usage = -1; - state->flags = CPUIDLE_FLAG_POLL; + state->flags = 0; state->enter = poll_idle; } #else |