]> Git Repo - J-linux.git/commitdiff
ACPI: fix Compaq Evo N800c (Pentium 4m) boot hang regression
authorZhao Yakui <[email protected]>
Sun, 27 Sep 2009 07:30:51 +0000 (03:30 -0400)
committerLen Brown <[email protected]>
Sun, 27 Sep 2009 07:43:42 +0000 (03:43 -0400)
Don't disable ARB_DISABLE when the familary ID is 0x0F.

http://bugzilla.kernel.org/show_bug.cgi?id=14211

This was a 2.6.31 regression, and so this patch
needs to be applied to 2.6.31.stable

Signed-off-by: Zhao Yakui <[email protected]>
Signed-off-by: Len Brown <[email protected]>
arch/x86/kernel/acpi/cstate.c

index 8c44c232efcb9f2b1150b4f58a0942bf9dd3ac0a..59cdfa4686b2bf4ad7ceae1ab680265effe901aa 100644 (file)
@@ -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 > 0x6 || (c->x86 == 6 && c->x86_model >= 14)))
+           (c->x86 > 0xf || (c->x86 == 6 && c->x86_model >= 14)))
                        flags->bm_control = 0;
 }
 EXPORT_SYMBOL(acpi_processor_power_init_bm_check);
This page took 0.049502 seconds and 4 git commands to generate.