From: Prarit Bhargava Date: Wed, 23 Oct 2013 13:44:51 +0000 (-0400) Subject: intel_idle: use CPU_TASKS_FROZEN instead of a numeric constant X-Git-Tag: v3.13-rc1~28^2~5^2~3 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=e2401453111dd84da377e4e84740ab643885f95a;p=cascardo%2Flinux.git intel_idle: use CPU_TASKS_FROZEN instead of a numeric constant Small fixup to use CPU_TASKS_FROZEN instead of 0xf. Signed-off-by: Prarit Bhargava Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index 33e599ebbe96..3f95a533c1a8 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -390,7 +390,7 @@ static int cpu_hotplug_notify(struct notifier_block *n, int hotcpu = (unsigned long)hcpu; struct cpuidle_device *dev; - switch (action & 0xf) { + switch (action & ~CPU_TASKS_FROZEN) { case CPU_ONLINE: if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE)