From: Adrian Bunk Date: Wed, 21 Nov 2007 23:07:11 +0000 (-0800) Subject: PCI: always export pci_scan_single_device X-Git-Tag: v2.6.25-rc1~1074^2~48 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=b73e96878d5d57605aeea89068c8dacd568f5e7e;p=linux.git PCI: always export pci_scan_single_device This patch fixes the following build error with CONFIG_HOTPLUG=n: MODPOST 2137 modules ERROR: "pci_scan_single_device" [drivers/edac/i82875p_edac.ko] undefined! Signed-off-by: Adrian Bunk Acked-by: Doug Thompson Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index ceaeac1bd655..d8e32e111632 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -971,6 +971,7 @@ struct pci_dev *pci_scan_single_device(struct pci_bus *bus, int devfn) return dev; } +EXPORT_SYMBOL(pci_scan_single_device); /** * pci_scan_slot - scan a PCI slot on a bus for devices. @@ -1158,7 +1159,6 @@ EXPORT_SYMBOL(pci_add_new_bus); EXPORT_SYMBOL(pci_do_scan_bus); EXPORT_SYMBOL(pci_scan_slot); EXPORT_SYMBOL(pci_scan_bridge); -EXPORT_SYMBOL(pci_scan_single_device); EXPORT_SYMBOL_GPL(pci_scan_child_bus); #endif