2008-02-02 21:32:23 +00:00
|
|
|
/* Core PCI functionality used only by PCI hotplug */
|
|
|
|
|
|
|
|
#include <linux/pci.h>
|
2011-05-27 13:37:25 +00:00
|
|
|
#include <linux/export.h>
|
2008-02-02 21:32:23 +00:00
|
|
|
#include "pci.h"
|
|
|
|
|
|
|
|
|
2008-02-17 09:45:28 +00:00
|
|
|
unsigned int __devinit pci_do_scan_bus(struct pci_bus *bus)
|
2008-02-02 21:32:23 +00:00
|
|
|
{
|
|
|
|
unsigned int max;
|
|
|
|
|
|
|
|
max = pci_scan_child_bus(bus);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make the discovered devices available.
|
|
|
|
*/
|
|
|
|
pci_bus_add_devices(bus);
|
|
|
|
|
|
|
|
return max;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(pci_do_scan_bus);
|