diff mbox series

[RESEND,v3,2/5] core/pci: Make the pci_scan_one() function public

Message ID 20191024180259.882169-3-s.miroshnichenko@yadro.com
State New
Headers show
Series core/pci: Track changes of topology by an OS | expand

Checks

Context Check Description
snowpatch_ozlabs/apply_patch success Successfully applied on branch master (d75e82dbfbb9443efeb3f9a5921ac23605aab469)
snowpatch_ozlabs/snowpatch_job_snowpatch-skiboot success Test snowpatch/job/snowpatch-skiboot on branch master
snowpatch_ozlabs/snowpatch_job_snowpatch-skiboot-dco success Signed-off-by present

Commit Message

Sergei Miroshnichenko Oct. 24, 2019, 6:02 p.m. UTC
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(-)
diff mbox series

Patch

diff --git a/core/pci.c b/core/pci.c
index 5bb0c2e2..476a3825 100644
--- a/core/pci.c
+++ b/core/pci.c
@@ -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;
diff --git a/include/pci.h b/include/pci.h
index 20edb50c..64329664 100644
--- a/include/pci.h
+++ b/include/pci.h
@@ -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,