6153df7b2f
Delete the ability to build an ACPI kernel that does not include PCI support. When such a machine is created and it requires a tuned kernel, send a patch. http://bugzilla.kernel.org/show_bug.cgi?id=1364 Signed-off-by: Len Brown <len.brown@intel.com>
23 lines
560 B
Plaintext
23 lines
560 B
Plaintext
#
|
|
# Makefile for X86_64 specific PCI routines
|
|
#
|
|
# Reuse the i386 PCI subsystem
|
|
#
|
|
CFLAGS += -I arch/i386/pci
|
|
|
|
obj-y := i386.o
|
|
obj-$(CONFIG_PCI_DIRECT)+= direct.o
|
|
obj-y += fixup.o
|
|
obj-$(CONFIG_ACPI) += acpi.o
|
|
obj-y += legacy.o irq.o common.o
|
|
# mmconfig has a 64bit special
|
|
obj-$(CONFIG_PCI_MMCONFIG) += mmconfig.o
|
|
|
|
direct-y += ../../i386/pci/direct.o
|
|
acpi-y += ../../i386/pci/acpi.o
|
|
legacy-y += ../../i386/pci/legacy.o
|
|
irq-y += ../../i386/pci/irq.o
|
|
common-y += ../../i386/pci/common.o
|
|
fixup-y += ../../i386/pci/fixup.o
|
|
i386-y += ../../i386/pci/i386.o
|