f157cbb1eb
This is useful on systems with broken PCI bus. Affects various scans in x86-64 and i386's early ACPI quirk scan. Cc: gregkh@suse.de Cc: len.brown@intel.com Cc: Trammell Hudson <hudson@osresearch.net> Signed-off-by: Andi Kleen <ak@suse.de>
11 lines
221 B
Makefile
11 lines
221 B
Makefile
obj-$(CONFIG_ACPI) += boot.o
|
|
ifneq ($(CONFIG_PCI),)
|
|
obj-$(CONFIG_X86_IO_APIC) += earlyquirk.o
|
|
endif
|
|
obj-$(CONFIG_ACPI_SLEEP) += sleep.o wakeup.o
|
|
|
|
ifneq ($(CONFIG_ACPI_PROCESSOR),)
|
|
obj-y += cstate.o processor.o
|
|
endif
|
|
|