aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlen Nakamura <glen@imodulo.com>2008-04-16 10:13:15 +0200
committerWilly Tarreau <w@1wt.eu>2008-07-20 18:25:41 +0200
commit5bee4ba03172960ca1509a042b82a7a907b770a6 (patch)
treebd5959b88797ecdaa58a1e92de88d13f2f6778be
parente19911d43da2bcb4b628a0de00aedb5f5db09678 (diff)
downloadlinux-2.4-5bee4ba03172960ca1509a042b82a7a907b770a6.tar.gz
Fix typo in acpi_boot_init
Here's a heads up on a couple of patches I submitted a few years back that seem to have been forgotten: http://marc.info/?l=linux-kernel&m=111467256405878&w=2 The following ChangeSet introduced a typo in acpi_boot_init: ChangeSet@1.1448.1.123 2005-03-09 11:43:51-03:00 marcelo@cnet * Early ACPI PCI quirk depends on CONFIG_X86_IO_APIC CONFIG_X86_IOAPIC should obviously be CONFIG_X86_IO_APIC as written in the patch description above. Trivial fix below. Signed-off-by: Glen Nakamura <glen@imodulo.com>
-rw-r--r--arch/i386/kernel/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/acpi.c b/arch/i386/kernel/acpi.c
index 557a73f01895fd..ad489cb1974621 100644
--- a/arch/i386/kernel/acpi.c
+++ b/arch/i386/kernel/acpi.c
@@ -440,7 +440,7 @@ acpi_boot_init (void)
return result;
}
-#ifdef CONFIG_X86_IOAPIC
+#ifdef CONFIG_X86_IO_APIC
check_acpi_pci();
#endif