[PATCH][RESEND] Compile warning in arch/i386/kernel/setup.c

From: Stephane Ouellette
Date: Thu May 18 2006 - 23:40:19 EST


Hi,

I got an "implicit function declaration" warning because check_acpi_pci() depends on CONFIG_ACPI, NOT on CONFIG_X86_IO_APIC.

The following patch fixes this warning and applies to kernel 2.6.16.16.

Regards,

Stephane.

--- linux-2.6.16.16/arch/i386/kernel/setup.c 2006-05-18 11:34:10.000000000 -0400
+++ linux-2.6.16.16-fixed/arch/i386/kernel/setup.c 2006-05-18 11:51:46.000000000 -0400
@@ -1599,11 +1599,9 @@
if (efi_enabled)
efi_map_memmap();

-#ifdef CONFIG_X86_IO_APIC
+#ifdef CONFIG_ACPI
check_acpi_pci(); /* Checks more than just ACPI actually */
-#endif

-#ifdef CONFIG_ACPI
/*
* Parse the ACPI tables for possible boot-time SMP configuration.
*/