diff options
author | Yinghai Lu <yinghai@kernel.org> | 2010-02-24 15:39:37 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-25 17:26:43 -0500 |
commit | 722a639fd2cec44501c04ae32af57fd822c5a2d5 (patch) | |
tree | c1916245e4c2bb9c27f48053e57e1d151fa1aa2c /arch/x86/pci/Makefile | |
parent | a92d152ef9dd89c578ca2ec7118e9de8fb74a75f (diff) |
x86, pci: Exclude Moorestown PCI code if CONFIG_X86_MRST=n
If we don't have any Moorestown CPU support compiled in, we don't need
the Moorestown PCI support either.
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <4B858E89.7040807@kernel.org>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/pci/Makefile')
-rw-r--r-- | arch/x86/pci/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/pci/Makefile b/arch/x86/pci/Makefile index 4753ebc19cae..56caf2a18baa 100644 --- a/arch/x86/pci/Makefile +++ b/arch/x86/pci/Makefile | |||
@@ -13,7 +13,9 @@ obj-$(CONFIG_X86_VISWS) += visws.o | |||
13 | 13 | ||
14 | obj-$(CONFIG_X86_NUMAQ) += numaq_32.o | 14 | obj-$(CONFIG_X86_NUMAQ) += numaq_32.o |
15 | 15 | ||
16 | obj-y += common.o early.o mrst.o | 16 | obj-$(CONFIG_X86_MRST) += mrst.o |
17 | |||
18 | obj-y += common.o early.o | ||
17 | obj-y += amd_bus.o | 19 | obj-y += amd_bus.o |
18 | obj-$(CONFIG_X86_64) += bus_numa.o | 20 | obj-$(CONFIG_X86_64) += bus_numa.o |
19 | 21 | ||