diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2013-01-03 15:30:09 -0700 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-01-04 10:57:29 -0700 |
commit | ca75e032a51013b5b9de16b7aec3674ce29b544f (patch) | |
tree | 91403b4dea583c192dfe91e2e7293f7e0f4350ec /arch/frv/mb93090-mb00/pci-vdk.c | |
parent | b7869ba17cfb5553a33e11f18c7c45d988e4c455 (diff) | |
download | blackbird-obmc-linux-ca75e032a51013b5b9de16b7aec3674ce29b544f.tar.gz blackbird-obmc-linux-ca75e032a51013b5b9de16b7aec3674ce29b544f.zip |
frv/PCI: Remove unused pci_root_bus
pci_root_bus is unused, so remove all references to it.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/frv/mb93090-mb00/pci-vdk.c')
-rw-r--r-- | arch/frv/mb93090-mb00/pci-vdk.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/frv/mb93090-mb00/pci-vdk.c b/arch/frv/mb93090-mb00/pci-vdk.c index 71e9bcf58105..1152a1e3cabb 100644 --- a/arch/frv/mb93090-mb00/pci-vdk.c +++ b/arch/frv/mb93090-mb00/pci-vdk.c @@ -26,7 +26,6 @@ unsigned int __nongpreldata pci_probe = 1; int __nongpreldata pcibios_last_bus = -1; -struct pci_bus *__nongpreldata pci_root_bus; struct pci_ops *__nongpreldata pci_root_ops; /* @@ -416,8 +415,7 @@ int __init pcibios_init(void) printk("PCI: Probing PCI hardware\n"); pci_add_resource(&resources, &pci_ioport_resource); pci_add_resource(&resources, &pci_iomem_resource); - pci_root_bus = pci_scan_root_bus(NULL, 0, pci_root_ops, NULL, - &resources); + pci_scan_root_bus(NULL, 0, pci_root_ops, NULL, &resources); pcibios_irq_init(); pcibios_fixup_peer_bridges(); |