diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-01-23 16:02:28 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-02-11 11:32:20 +0000 |
commit | 5b14116a04b4b96d25f825bef8f34caf4bd51466 (patch) | |
tree | cb624faa671d14d6363d664722502b08a5e56c81 /src/device/Makefile.inc | |
parent | 371f04811e075d79741d130e2043ec8e19044dde (diff) | |
download | coreboot-5b14116a04b4b96d25f825bef8f34caf4bd51466.tar.xz |
device/pci_early.c: Drop some guards
With PCI_DEV() always defined it is no longer
necessary to exclude this code from building.
Change-Id: I58a6348750d240aa6024599f7b1af1449f31e8ac
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/31303
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/device/Makefile.inc')
-rw-r--r-- | src/device/Makefile.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/device/Makefile.inc b/src/device/Makefile.inc index bed0f718ee..39df1c7b9c 100644 --- a/src/device/Makefile.inc +++ b/src/device/Makefile.inc @@ -13,7 +13,6 @@ ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_32) += pnp_device.c ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_64) += pnp_device.c ramstage-$(CONFIG_PCI) += pci_ops.c ramstage-$(CONFIG_MMCONF_SUPPORT) += pci_ops_mmconf.c -ramstage-$(CONFIG_PCI) += pci_early.c ramstage-$(CONFIG_PCI) += pci_rom.c ramstage-y += smbus_ops.c @@ -28,12 +27,10 @@ verstage-y += device_const.c romstage-y += device_const.c ramstage-y += device_const.c -ifeq ($(CONFIG_ARCH_X86),y) bootblock-$(CONFIG_PCI) += pci_early.c verstage-$(CONFIG_PCI) += pci_early.c romstage-$(CONFIG_PCI) += pci_early.c postcar-$(CONFIG_PCI) += pci_early.c -endif subdirs-y += oprom dram |