diff options
author | Len Brown <len.brown@intel.com> | 2010-03-14 16:28:46 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-03-14 20:58:24 -0400 |
commit | 4c81ba4900ab4eb24c7d2ba1aca594c644b6ce4c (patch) | |
tree | 4549d9c5791aa3a9991acba55601f8aa9cab0201 /arch | |
parent | 8144c880397d502d12af4ef721f3eac50163fa39 (diff) | |
download | op-kernel-dev-4c81ba4900ab4eb24c7d2ba1aca594c644b6ce4c.zip op-kernel-dev-4c81ba4900ab4eb24c7d2ba1aca594c644b6ce4c.tar.gz |
ACPI: plan to delete "acpi=ht" boot option
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index df586bb..7914ab0 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c @@ -1559,8 +1559,10 @@ static int __init parse_acpi(char *arg) } /* Limit ACPI just to boot-time to enable HT */ else if (strcmp(arg, "ht") == 0) { - if (!acpi_force) + if (!acpi_force) { + printk(KERN_WARNING "acpi=ht will be removed in Linux-2.6.35\n"); disable_acpi(); + } acpi_ht = 1; } /* acpi=rsdt use RSDT instead of XSDT */ |