diff options
author | Yu Zhao <yu.zhao@intel.com> | 2008-11-22 02:42:35 +0800 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-01-07 11:13:06 -0800 |
commit | 876e501ab25dcd683574a5d3d56d8fe450083ed6 (patch) | |
tree | 0ffefee783b1645e413a8ffa6fb0b615c41862cc /drivers/pci/pci.h | |
parent | 3fa16fdb48e0d83c2acf46e357548c89891df58b (diff) | |
download | linux-3.10-876e501ab25dcd683574a5d3d56d8fe450083ed6.tar.gz linux-3.10-876e501ab25dcd683574a5d3d56d8fe450083ed6.tar.bz2 linux-3.10-876e501ab25dcd683574a5d3d56d8fe450083ed6.zip |
PCI: factor pci_bus_add_child() from pci_bus_add_devices()
This patch splits a new function, pci_bus_add_child(), from
pci_bus_add_devices(). The new function can be used to register PCI
buses to the device core.
Signed-off-by: Yu Zhao <yu.zhao@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pci.h')
-rw-r--r-- | drivers/pci/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h index c4f4a1e6ea2..d1e92d83aa0 100644 --- a/drivers/pci/pci.h +++ b/drivers/pci/pci.h @@ -173,6 +173,7 @@ extern int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type, struct resource *res, unsigned int reg); extern int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type); +extern int pci_bus_add_child(struct pci_bus *bus); extern void pci_enable_ari(struct pci_dev *dev); /** * pci_ari_enabled - query ARI forwarding status |