Blame view

drivers/pci/hotplug-pci.c 365 Bytes
4105717bc   Sam Ravnborg   PCI: fix section ...
1
2
3
  /* Core PCI functionality used only by PCI hotplug */
  
  #include <linux/pci.h>
363c75db1   Paul Gortmaker   pci: Fix files ne...
4
  #include <linux/export.h>
4105717bc   Sam Ravnborg   PCI: fix section ...
5
  #include "pci.h"
0ab2b57f8   Sam Ravnborg   PCI: fix section ...
6
  unsigned int __devinit pci_do_scan_bus(struct pci_bus *bus)
4105717bc   Sam Ravnborg   PCI: fix section ...
7
8
9
10
11
12
13
14
15
16
17
18
19
  {
  	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);