469b1d8741
The arch/x86_64/pci directory was giving problems in a wierd cross-compile environment. The exact cause is unknown, but the Makefile used CFLAGS instead of EXTRA_CFLAGS. From what I can tell from Documentation/kbuild/makefiles.txt, CFLAGS should not be used for this, it should be EXTRA_CFLAGS. And it solves the cross-compile problem. Signed-off-by: Corey Minyard <cminyard@mvista.com> Signed-off-by: Andi Kleen <ak@suse.de> Cc: Andi Kleen <ak@muc.de> Cc: Vojtech Pavlik <vojtech@suse.cz> Cc: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Andrew Morton <akpm@osdl.org>
27 lines
687 B
Makefile
27 lines
687 B
Makefile
#
|
|
# Makefile for X86_64 specific PCI routines
|
|
#
|
|
# Reuse the i386 PCI subsystem
|
|
#
|
|
EXTRA_CFLAGS += -Iarch/i386/pci
|
|
|
|
obj-y := i386.o
|
|
obj-$(CONFIG_PCI_DIRECT)+= direct.o
|
|
obj-y += fixup.o init.o
|
|
obj-$(CONFIG_ACPI) += acpi.o
|
|
obj-y += legacy.o irq.o common.o early.o
|
|
# mmconfig has a 64bit special
|
|
obj-$(CONFIG_PCI_MMCONFIG) += mmconfig.o direct.o
|
|
|
|
obj-$(CONFIG_NUMA) += k8-bus.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
|
|
init-y += ../../i386/pci/init.o
|
|
early-y += ../../i386/pci/early.o
|