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>

authored by Yinghai Lu and committed by H. Peter Anvin 722a639f a92d152e

+3 -1
+3 -1
arch/x86/pci/Makefile
··· 13 13 14 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 19 obj-y += amd_bus.o 18 20 obj-$(CONFIG_X86_64) += bus_numa.o 19 21