aboutsummaryrefslogtreecommitdiff
path: root/src/device/pci_early.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/device/pci_early.c')
-rw-r--r--src/device/pci_early.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/device/pci_early.c b/src/device/pci_early.c
index e31287e8bf..e690211c43 100644
--- a/src/device/pci_early.c
+++ b/src/device/pci_early.c
@@ -25,8 +25,7 @@
#include <delay.h>
#ifdef __PRE_RAM__
-
-unsigned pci_find_next_capability(device_t dev, unsigned cap, unsigned last)
+unsigned pci_find_next_capability(pci_devfn_t dev, unsigned cap, unsigned last)
{
unsigned pos = 0;
u16 status;
@@ -69,11 +68,11 @@ unsigned pci_find_next_capability(device_t dev, unsigned cap, unsigned last)
return 0;
}
-unsigned pci_find_capability(device_t dev, unsigned cap)
+unsigned pci_find_capability(pci_devfn_t dev, unsigned cap)
{
return pci_find_next_capability(dev, cap, 0);
}
-#endif
+#endif /* __PRE_RAM__ */
#if CONFIG_EARLY_PCI_BRIDGE