diff options
author | Dmitri Vorobiev <dmitri.vorobiev@movial.fi> | 2008-06-18 03:18:20 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-15 13:44:31 -0400 |
commit | d58eaab5a01b9cf1819ec57271ac214a39bf6278 (patch) | |
tree | bcf5f25e40311ec0d4e9b1a7d7221e6e9596c02b /arch | |
parent | 1ea6428cbdbb0fd1a6e7e8c3044253eab9aff4c7 (diff) |
[MIPS] Namespace clean-up in arch/mips/pci/pci.c
The following symbols
hose_head
hose_tail
are needlessly defined global in arch/mips/pci/pci.c, and
this patch makes them static.
The variable pci_isa_hose is not used, and is removed by
this patch.
Spotted by namespacecheck. Tested by booting a Malta 4Kc
board up to the shell prompt.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/pci/pci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index 358ad6210949..d7d6cb063d26 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c | |||
@@ -29,8 +29,7 @@ unsigned int pci_probe = PCI_ASSIGN_ALL_BUSSES; | |||
29 | * The PCI controller list. | 29 | * The PCI controller list. |
30 | */ | 30 | */ |
31 | 31 | ||
32 | struct pci_controller *hose_head, **hose_tail = &hose_head; | 32 | static struct pci_controller *hose_head, **hose_tail = &hose_head; |
33 | struct pci_controller *pci_isa_hose; | ||
34 | 33 | ||
35 | unsigned long PCIBIOS_MIN_IO = 0x0000; | 34 | unsigned long PCIBIOS_MIN_IO = 0x0000; |
36 | unsigned long PCIBIOS_MIN_MEM = 0; | 35 | unsigned long PCIBIOS_MIN_MEM = 0; |