drm: cleanup DRM_DEBUG() parameters
[linux-2.6/linux-2.6-openrd.git] / drivers / pci / hotplug-pci.c
bloba590ef682153ee5d765af348640ce79d39a9d4e8
1 /* Core PCI functionality used only by PCI hotplug */
3 #include <linux/pci.h>
4 #include "pci.h"
7 unsigned int pci_do_scan_bus(struct pci_bus *bus)
9 unsigned int max;
11 max = pci_scan_child_bus(bus);
14 * Make the discovered devices available.
16 pci_bus_add_devices(bus);
18 return max;
20 EXPORT_SYMBOL(pci_do_scan_bus);