@@ -214,8 +214,8 @@ bool pci_wait_crs(struct phb *phb, uint16_t bdfn, uint32_t *out_vdid)
return true;
}
-static struct pci_device *pci_scan_one(struct phb *phb, struct pci_device *parent,
- uint16_t bdfn)
+struct pci_device *pci_scan_one(struct phb *phb, struct pci_device *parent,
+ uint16_t bdfn)
{
struct pci_device *pd = NULL;
uint32_t vdid;
@@ -444,6 +444,8 @@ extern void pci_remove_bus(struct phb *phb, struct list_head *list);
extern uint8_t pci_scan_bus(struct phb *phb, uint8_t bus, uint8_t max_bus,
struct list_head *list, struct pci_device *parent,
bool scan_downstream);
+extern struct pci_device *pci_scan_one(struct phb *phb, struct pci_device *parent,
+ uint16_t bdfn);
extern void pci_add_device_nodes(struct phb *phb,
struct list_head *list,
struct dt_node *parent_node,
This change will be used by the next commit to discover new PCI devices and to create struct pci_device for them. Signed-off-by: Sergey Miroshnichenko <s.miroshnichenko@yadro.com> --- core/pci.c | 4 ++-- include/pci.h | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-)