diff options
author | Robert Richter <robert.richter@amd.com> | 2008-07-02 16:50:19 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-09 05:43:04 -0400 |
commit | 6d8566ac131f3dc3e976de824dcb04feaea4b14c (patch) | |
tree | 02bbc256611da2e4b157a0f31562a4918172efd0 /arch/x86/pci/Makefile | |
parent | d028203c0446c7f65ed2b22342a56f03c6c4a6c1 (diff) |
x86/pci: Makefile merge: Removing Makefile_*
No functional nor ordering changes here.
Signed-off-by: Robert Richter <robert.richter@amd.com>
Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/pci/Makefile')
-rw-r--r-- | arch/x86/pci/Makefile | 48 |
1 files changed, 46 insertions, 2 deletions
diff --git a/arch/x86/pci/Makefile b/arch/x86/pci/Makefile index c5c8e485fc44..3a8fb7303ad1 100644 --- a/arch/x86/pci/Makefile +++ b/arch/x86/pci/Makefile | |||
@@ -1,5 +1,49 @@ | |||
1 | ifeq ($(CONFIG_X86_32),y) | 1 | ifeq ($(CONFIG_X86_32),y) |
2 | include ${srctree}/arch/x86/pci/Makefile_32 | 2 | |
3 | obj-y := i386.o init.o | ||
4 | |||
5 | obj-$(CONFIG_PCI_BIOS) += pcbios.o | ||
6 | obj-$(CONFIG_PCI_MMCONFIG) += mmconfig_32.o direct.o mmconfig-shared.o | ||
7 | obj-$(CONFIG_PCI_DIRECT) += direct.o | ||
8 | obj-$(CONFIG_PCI_OLPC) += olpc.o | ||
9 | |||
10 | pci-y := fixup.o | ||
11 | |||
12 | # Do not change the ordering here. There is a nasty init function | ||
13 | # ordering dependency which breaks when you move acpi.o below | ||
14 | # legacy/irq.o | ||
15 | pci-$(CONFIG_ACPI) += acpi.o | ||
16 | pci-y += legacy.o irq.o | ||
17 | |||
18 | # Careful: VISWS overrule the pci-y above. The colons are | ||
19 | # therefor correct. This needs a proper fix by distangling the code. | ||
20 | pci-$(CONFIG_X86_VISWS) := visws.o fixup.o | ||
21 | |||
22 | pci-$(CONFIG_X86_NUMAQ) += numa.o | ||
23 | |||
24 | # Necessary for NUMAQ as well | ||
25 | pci-$(CONFIG_NUMA) += mp_bus_to_node.o | ||
26 | |||
27 | obj-y += $(pci-y) common.o early.o | ||
28 | obj-y += amd_bus.o | ||
29 | |||
3 | else | 30 | else |
4 | include ${srctree}/arch/x86/pci/Makefile_64 | 31 | |
32 | # | ||
33 | # Makefile for X86_64 specific PCI routines | ||
34 | # | ||
35 | # Reuse the i386 PCI subsystem | ||
36 | # | ||
37 | EXTRA_CFLAGS += -Iarch/x86/pci | ||
38 | |||
39 | obj-y := i386.o | ||
40 | obj-$(CONFIG_PCI_DIRECT)+= direct.o | ||
41 | obj-y += fixup.o init.o | ||
42 | obj-$(CONFIG_ACPI) += acpi.o | ||
43 | obj-y += legacy.o irq.o common.o early.o | ||
44 | # mmconfig has a 64bit special | ||
45 | obj-$(CONFIG_PCI_MMCONFIG) += mmconfig_64.o direct.o mmconfig-shared.o | ||
46 | |||
47 | obj-y += amd_bus.o | ||
48 | |||
5 | endif | 49 | endif |