aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2008-02-02 16:32:23 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2008-02-02 18:04:30 -0500
commit4105717bc98ba01663ff28f8a16d8716ba9d07fe (patch)
treeadfb3486587a21894035e31ceab84c1c44b8529f /drivers/pci
parentd5f78fb0c8ab7f929f94fa4087a2397ac8d29a30 (diff)
PCI: fix section mismatch warnings referring to pci_do_scan_bus
Fix following warnings: WARNING: o-x86_64/drivers/pci/built-in.o(.text+0xb054): Section mismatch in reference from the function cpci_configure_slot() to the function .devinit.text:pci_do_scan_bus() WARNING: o-x86_64/drivers/pci/built-in.o(.text+0x153ab): Section mismatch in reference from the function shpchp_configure_device() to the function .devinit.text:pci_do_scan_bus() WARNING: o-x86_64/drivers/pci/built-in.o(__ksymtab+0xc0): Section mismatch in reference from the variable __ksymtab_pci_do_scan_bus to the function .devinit.text:pci_do_scan_bus() PCI hotplug were the only user of pci_do_scan_bus() so moving this function to a separate file that is build only when we enable CONFIG_HOTPLUG_PCI. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Adrian Bunk <bunk@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/Makefile3
-rw-r--r--drivers/pci/hotplug-pci.c20
-rw-r--r--drivers/pci/probe.c15
3 files changed, 23 insertions, 15 deletions
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile
index f697f3d728eb..9f04d17576d6 100644
--- a/drivers/pci/Makefile
+++ b/drivers/pci/Makefile
@@ -13,6 +13,9 @@ obj-$(CONFIG_HOTPLUG) += hotplug.o
13 13
14# Build the PCI Hotplug drivers if we were asked to 14# Build the PCI Hotplug drivers if we were asked to
15obj-$(CONFIG_HOTPLUG_PCI) += hotplug/ 15obj-$(CONFIG_HOTPLUG_PCI) += hotplug/
16ifdef CONFIG_HOTPLUG_PCI
17obj-y += hotplug-pci.o
18endif
16 19
17# Build the PCI MSI interrupt support 20# Build the PCI MSI interrupt support
18obj-$(CONFIG_PCI_MSI) += msi.o 21obj-$(CONFIG_PCI_MSI) += msi.o
diff --git a/drivers/pci/hotplug-pci.c b/drivers/pci/hotplug-pci.c
new file mode 100644
index 000000000000..a590ef682153
--- /dev/null
+++ b/drivers/pci/hotplug-pci.c
@@ -0,0 +1,20 @@
1/* Core PCI functionality used only by PCI hotplug */
2
3#include <linux/pci.h>
4#include "pci.h"
5
6
7unsigned int pci_do_scan_bus(struct pci_bus *bus)
8{
9 unsigned int max;
10
11 max = pci_scan_child_bus(bus);
12
13 /*
14 * Make the discovered devices available.
15 */
16 pci_bus_add_devices(bus);
17
18 return max;
19}
20EXPORT_SYMBOL(pci_do_scan_bus);
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index 34fa0397b55d..3bb2bc2a1e70 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -1040,20 +1040,6 @@ unsigned int pci_scan_child_bus(struct pci_bus *bus)
1040 return max; 1040 return max;
1041} 1041}
1042 1042
1043unsigned int __devinit pci_do_scan_bus(struct pci_bus *bus)
1044{
1045 unsigned int max;
1046
1047 max = pci_scan_child_bus(bus);
1048
1049 /*
1050 * Make the discovered devices available.
1051 */
1052 pci_bus_add_devices(bus);
1053
1054 return max;
1055}
1056
1057struct pci_bus * pci_create_bus(struct device *parent, 1043struct pci_bus * pci_create_bus(struct device *parent,
1058 int bus, struct pci_ops *ops, void *sysdata) 1044 int bus, struct pci_ops *ops, void *sysdata)
1059{ 1045{
@@ -1140,7 +1126,6 @@ EXPORT_SYMBOL(pci_scan_bus_parented);
1140 1126
1141#ifdef CONFIG_HOTPLUG 1127#ifdef CONFIG_HOTPLUG
1142EXPORT_SYMBOL(pci_add_new_bus); 1128EXPORT_SYMBOL(pci_add_new_bus);
1143EXPORT_SYMBOL(pci_do_scan_bus);
1144EXPORT_SYMBOL(pci_scan_slot); 1129EXPORT_SYMBOL(pci_scan_slot);
1145EXPORT_SYMBOL(pci_scan_bridge); 1130EXPORT_SYMBOL(pci_scan_bridge);
1146EXPORT_SYMBOL_GPL(pci_scan_child_bus); 1131EXPORT_SYMBOL_GPL(pci_scan_child_bus);