summaryrefslogtreecommitdiff
path: root/src/device/pci_early.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-01-23 16:02:28 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-02-11 11:32:20 +0000
commit5b14116a04b4b96d25f825bef8f34caf4bd51466 (patch)
treecb624faa671d14d6363d664722502b08a5e56c81 /src/device/pci_early.c
parent371f04811e075d79741d130e2043ec8e19044dde (diff)
downloadcoreboot-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/pci_early.c')
-rw-r--r--src/device/pci_early.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/device/pci_early.c b/src/device/pci_early.c
index 4cf8c7e68c..9086e64b85 100644
--- a/src/device/pci_early.c
+++ b/src/device/pci_early.c
@@ -18,9 +18,10 @@
#include <arch/io.h>
#include <device/pci.h>
#include <device/pci_def.h>
+#include <device/pci_ops.h>
+#include <device/pci_type.h>
#include <delay.h>
-#if !ENV_RAMSTAGE
unsigned pci_find_next_capability(pci_devfn_t dev, unsigned cap, unsigned last)
{
unsigned pos = 0;
@@ -68,9 +69,6 @@ unsigned pci_find_capability(pci_devfn_t dev, unsigned cap)
{
return pci_find_next_capability(dev, cap, 0);
}
-#endif
-
-#if IS_ENABLED(CONFIG_EARLY_PCI_BRIDGE)
static void pci_bridge_reset_secondary(pci_devfn_t p2p_bridge)
{
@@ -167,4 +165,3 @@ void pci_early_bridge_init(void)
pci_early_mmio_window(p2p_bridge, CONFIG_EARLY_PCI_MMIO_BASE, 0x4000);
}
-#endif /* CONFIG_EARLY_PCI_BRIDGE */