[PATCH] earlyquirk.o is needed for CONFIG_ACPI_BOOT
Linux Kernel Mailing List <[email protected]> Fri, 25 Mar 2005 19:43:25 +0000
| Newsgroups | gmane.linux.kernel.commits.2-4 |
|---|---|
| Message-ID | <[email protected]> |
ChangeSet 1.1477, 2005/03/25 16:43:25-03:00, [email protected] [PATCH] earlyquirk.o is needed for CONFIG_ACPI_BOOT I think that this patch to the Makefile is needed to ensure earlyquirk.c is compiled if CONFIG_ACPI_BOOT is enabled. Signed-off-by: Horms <[email protected]> Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -Nru a/arch/i386/kernel/Makefile b/arch/i386/kernel/Makefile --- a/arch/i386/kernel/Makefile 2005-03-25 17:04:13 -08:00 +++ b/arch/i386/kernel/Makefile 2005-03-25 17:04:13 -08:00 @@ -36,11 +36,11 @@ obj-$(CONFIG_X86_CPUID) += cpuid.o obj-$(CONFIG_MICROCODE) += microcode.o obj-$(CONFIG_APM) += apm.o -obj-$(CONFIG_ACPI_BOOT) += acpi.o +obj-$(CONFIG_ACPI_BOOT) += acpi.o earlyquirk.o obj-$(CONFIG_ACPI_SLEEP) += acpi_wakeup.o obj-$(CONFIG_SMP) += smp.o smpboot.o trampoline.o obj-$(CONFIG_X86_LOCAL_APIC) += mpparse.o apic.o nmi.o -obj-$(CONFIG_X86_IO_APIC) += io_apic.o earlyquirk.o +obj-$(CONFIG_X86_IO_APIC) += io_apic.o obj-$(CONFIG_X86_VISWS_APIC) += visws_apic.o obj-$(CONFIG_EDD) += edd.o