aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/kernel/acpi
diff options
context:
space:
mode:
authorGravatar Len Brown <len.brown@intel.com> 2009-12-15 22:35:21 -0500
committerGravatar Len Brown <len.brown@intel.com> 2009-12-15 22:35:21 -0500
commit0ceafc33affb566434f362c947b2e1a41450dcf9 (patch)
treeef21acf2c1bb79ac5a12256254e80640c7caf380 /arch/x86/kernel/acpi
parentMerge branch 'asus' into release (diff)
parentACPI: Use the ARB_DISABLE for the CPU which model id is less than 0x0f. (diff)
downloadlinux-0ceafc33affb566434f362c947b2e1a41450dcf9.tar.gz
linux-0ceafc33affb566434f362c947b2e1a41450dcf9.tar.bz2
linux-0ceafc33affb566434f362c947b2e1a41450dcf9.zip
Merge branch 'bugzilla-14700' into release
Diffstat (limited to 'arch/x86/kernel/acpi')
-rw-r--r--arch/x86/kernel/acpi/cstate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/acpi/cstate.c b/arch/x86/kernel/acpi/cstate.c
index 59cdfa4686b2..2e837f5080fe 100644
--- a/arch/x86/kernel/acpi/cstate.c
+++ b/arch/x86/kernel/acpi/cstate.c
@@ -48,7 +48,7 @@ void acpi_processor_power_init_bm_check(struct acpi_processor_flags *flags,
* P4, Core and beyond CPUs
*/
if (c->x86_vendor == X86_VENDOR_INTEL &&
- (c->x86 > 0xf || (c->x86 == 6 && c->x86_model >= 14)))
+ (c->x86 > 0xf || (c->x86 == 6 && c->x86_model >= 0x0f)))
flags->bm_control = 0;
}
EXPORT_SYMBOL(acpi_processor_power_init_bm_check);