diff options
author | Ray Jui <rjui@broadcom.com> | 2015-04-08 11:21:33 -0700 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2015-04-08 14:17:10 -0500 |
commit | e6b29deafad3ce020dcf873a27a95c0cb9966c5b (patch) | |
tree | 5ef7f5f307634f36ff84141d439183cdd5382e9d /drivers/pci/probe.c | |
parent | c517d838eb7d07bbe9507871fab3931deccff539 (diff) | |
download | linux-e6b29deafad3ce020dcf873a27a95c0cb9966c5b.tar.bz2 |
PCI: Export symbols required for loadable host driver modules
Export the following symbols so they can be referenced by a PCI host bridge
driver compiled as a kernel loadable module:
pci_common_swizzle
pci_create_root_bus
pci_stop_root_bus
pci_remove_root_bus
pci_assign_unassigned_bus_resources
pci_fixup_irqs
Signed-off-by: Ray Jui <rjui@broadcom.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/pci/probe.c')
-rw-r--r-- | drivers/pci/probe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 8d2f400e96cb..f13a78af909e 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -1993,6 +1993,7 @@ err_out: kfree(b); return NULL; } +EXPORT_SYMBOL_GPL(pci_create_root_bus); int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int bus_max) { |