diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2012-02-23 20:18:57 -0700 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-02-23 20:18:57 -0700 |
commit | 14be538c566f6fd6f8c8abd1687aa5d36a600703 (patch) | |
tree | bde269e30f53af81f1fbb27ab992ff9bf31a4a3e /arch/mips/pci/pci.c | |
parent | 2909060699226f70d731d9c242489418f7da4972 (diff) | |
download | linux-14be538c566f6fd6f8c8abd1687aa5d36a600703.tar.gz linux-14be538c566f6fd6f8c8abd1687aa5d36a600703.tar.bz2 linux-14be538c566f6fd6f8c8abd1687aa5d36a600703.zip |
mips/PCI: removed unused pci_probe configurability
We never assign anything other than PCI_ASSIGN_ALL_BUSSES to pci_probe,
so just remove the indirection. If configurability is required in the
future, please use the pci_flags/PCI_REASSIGN_ALL_BUS functionality
as is done for powerpc.
CC: Ralf Baechle <ralf@linux-mips.org>
CC: linux-mips@linux-mips.org
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/mips/pci/pci.c')
-rw-r--r-- | arch/mips/pci/pci.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index 2a1104512036..19f6d194a568 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c @@ -24,10 +24,6 @@ * assignments. */ -#define PCI_ASSIGN_ALL_BUSSES 1 - -unsigned int pci_probe = PCI_ASSIGN_ALL_BUSSES; - /* * The PCI controller list. */ @@ -238,7 +234,7 @@ static int pcibios_enable_resources(struct pci_dev *dev, int mask) unsigned int pcibios_assign_all_busses(void) { - return (pci_probe & PCI_ASSIGN_ALL_BUSSES) ? 1 : 0; + return 1; } int pcibios_enable_device(struct pci_dev *dev, int mask) |