aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorVikram Narayanan <vikram186@gmail.com>2012-01-24 20:22:20 +0530
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-01-26 22:15:19 +0100
commitacf2aab54b8264b658209d2697ae8b5e26f1b496 (patch)
tree5ecf87b2b5b087857e86873b97b1560946e9c58a /src/arch
parent409d17dee7b407729a29c067ab064c78be18841e (diff)
pci_ops_mmconf: Move conditional compilation to Makefile
Moved the conditional compilation out of the source file Change-Id: Ic4045006f39d70f4a0bc37d1bd5e073ed8477c68 Signed-off-by: Vikram Narayanan <vikram186@gmail.com> Reviewed-on: http://review.coreboot.org/578 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/lib/Makefile.inc4
-rw-r--r--src/arch/x86/lib/pci_ops_mmconf.c4
2 files changed, 3 insertions, 5 deletions
diff --git a/src/arch/x86/lib/Makefile.inc b/src/arch/x86/lib/Makefile.inc
index 3092388586..3388a9dea3 100644
--- a/src/arch/x86/lib/Makefile.inc
+++ b/src/arch/x86/lib/Makefile.inc
@@ -2,7 +2,9 @@ ramstage-y += c_start.S
ramstage-y += cpu.c
ramstage-y += pci_ops_conf1.c
ramstage-y += pci_ops_conf2.c
-ramstage-y += pci_ops_mmconf.c
+
+ramstage-$(CONFIG_MMCONF_SUPPORT) += pci_ops_mmconf.c
+
ramstage-y += pci_ops_auto.c
ramstage-y += exception.c
ramstage-$(CONFIG_IOAPIC) += ioapic.c
diff --git a/src/arch/x86/lib/pci_ops_mmconf.c b/src/arch/x86/lib/pci_ops_mmconf.c
index 7fcd88ae87..4f9d8265c1 100644
--- a/src/arch/x86/lib/pci_ops_mmconf.c
+++ b/src/arch/x86/lib/pci_ops_mmconf.c
@@ -1,5 +1,3 @@
-#if CONFIG_MMCONF_SUPPORT
-
#include <console/console.h>
#include <arch/io.h>
#include <arch/pciconf.h>
@@ -63,5 +61,3 @@ const struct pci_bus_operations pci_ops_mmconf = {
.write16 = pci_mmconf_write_config16,
.write32 = pci_mmconf_write_config32,
};
-
-#endif