diff options
| author | Wei Yang <[email protected]> | 2016-03-04 10:53:04 +1100 |
|---|---|---|
| committer | Michael Ellerman <[email protected]> | 2016-03-09 09:58:14 +1100 |
| commit | 7b77061f8d03cdaf71d91ea356835131d651b103 (patch) | |
| tree | 19c1bf91b380bb848c779ff6840d521ef67d06c1 /include/linux | |
| parent | c194f7ea7f68f2690533832ec22f0d7ed4f2d74d (diff) | |
PCI: Add pcibios_bus_add_device() weak function
This adds weak function pcibios_bus_add_device() for arch dependent
code could do proper setup. For example, powerpc could setup EEH
related resources for SRIOV VFs.
Signed-off-by: Wei Yang <[email protected]>
Reviewed-by: Gavin Shan <[email protected]>
Acked-by: Bjorn Helgaas <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 3db5e30e8ede..bc435d6293d2 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -770,6 +770,7 @@ extern struct list_head pci_root_buses; /* list of all known PCI buses */ int no_pci_devices(void); void pcibios_resource_survey_bus(struct pci_bus *bus); +void pcibios_bus_add_device(struct pci_dev *pdev); void pcibios_add_bus(struct pci_bus *bus); void pcibios_remove_bus(struct pci_bus *bus); void pcibios_fixup_bus(struct pci_bus *); |