-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sam Ravnborg
authored and
Greg Kroah-Hartman
committed
Feb 2, 2008
1 parent
4ad7b78
commit d1a37af
Showing
4 changed files
with
24 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: d5f78fb0c8ab7f929f94fa4087a2397ac8d29a30 | ||
refs/heads/master: 4105717bc98ba01663ff28f8a16d8716ba9d07fe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* Core PCI functionality used only by PCI hotplug */ | ||
|
||
#include <linux/pci.h> | ||
#include "pci.h" | ||
|
||
|
||
unsigned int pci_do_scan_bus(struct pci_bus *bus) | ||
{ | ||
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters