OSDN Git Service

Fix typo in acpi_boot_init
authorGlen Nakamura <glen@imodulo.com>
Wed, 16 Apr 2008 08:13:15 +0000 (10:13 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 16 Apr 2008 08:14:33 +0000 (10:14 +0200)
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>
arch/i386/kernel/acpi.c

index 557a73f..ad489cb 100644 (file)
@@ -440,7 +440,7 @@ acpi_boot_init (void)
                return result;
        }
 
-#ifdef CONFIG_X86_IOAPIC
+#ifdef CONFIG_X86_IO_APIC
        check_acpi_pci();
 #endif