summaryrefslogtreecommitdiffstats
path: root/arch/unicore32/kernel
diff options
context:
space:
mode:
authorJiang Liu2013-05-28 00:42:26 +0200
committerBjorn Helgaas2013-06-15 01:38:40 +0200
commitc13e396ebfed48948f3204db0e7def95080cd660 (patch)
tree2a69e52232a64ac200977c4dd83f8cc1cad369b0 /arch/unicore32/kernel
parentm68k/PCI: Remove redundant call of pci_bus_add_devices() (diff)
downloadkernel-qcow2-linux-c13e396ebfed48948f3204db0e7def95080cd660.tar.gz
kernel-qcow2-linux-c13e396ebfed48948f3204db0e7def95080cd660.tar.xz
kernel-qcow2-linux-c13e396ebfed48948f3204db0e7def95080cd660.zip
unicore32/PCI: Remove redundant call of pci_bus_add_devices()
pci_scan_bus() has called pci_bus_add_devices() already, so remove the redundant call of pci_bus_add_devices(). subsys_init() callbacks will be invoked before device_init() callbacks, so it should be safe to remove the redundant calls. Signed-off-by: Jiang Liu <jiang.liu@huawei.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/unicore32/kernel')
-rw-r--r--arch/unicore32/kernel/pci.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/unicore32/kernel/pci.c b/arch/unicore32/kernel/pci.c
index ef69c0c82825..374a055a8e6b 100644
--- a/arch/unicore32/kernel/pci.c
+++ b/arch/unicore32/kernel/pci.c
@@ -277,11 +277,6 @@ static int __init pci_common_init(void)
pci_bus_assign_resources(puv3_bus);
}
- /*
- * Tell drivers about devices found.
- */
- pci_bus_add_devices(puv3_bus);
-
return 0;
}
subsys_initcall(pci_common_init);