Probe PCI existence
[seabios.git] / src / pci.h
index 3e28af29e40583d435c39ee29cafa472826afb55..a2a5a4c71f23cf25fa03928511a2cefec6298320 100644 (file)
--- a/src/pci.h
+++ b/src/pci.h
@@ -62,7 +62,8 @@ struct pci_device {
 };
 extern struct pci_device *PCIDevices;
 extern int MaxPCIBus;
-void pci_probe(void);
+int pci_probe_host(void);
+void pci_probe_devices(void);
 static inline u32 pci_classprog(struct pci_device *pci) {
     return (pci->class << 8) | pci->prog_if;
 }