| To: | ralf@linux-mips.org, linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH 2/5] [MIPS] Namespace clean-up in arch/mips/pci/pci.c |
| From: | Dmitri Vorobiev <dmitri.vorobiev@movial.fi> |
| Date: | Wed, 18 Jun 2008 10:18:20 +0300 |
| In-reply-to: | <1213773503-23536-1-git-send-email-dmitri.vorobiev@movial.fi> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <1213773503-23536-1-git-send-email-dmitri.vorobiev@movial.fi> |
| Sender: | linux-mips-bounce@linux-mips.org |
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>
---
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 358ad62..d7d6cb0 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;
* The PCI controller list.
*/
-struct pci_controller *hose_head, **hose_tail = &hose_head;
-struct pci_controller *pci_isa_hose;
+static struct pci_controller *hose_head, **hose_tail = &hose_head;
unsigned long PCIBIOS_MIN_IO = 0x0000;
unsigned long PCIBIOS_MIN_MEM = 0;
--
1.5.5.GIT
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 3/5] [MIPS] A few cleanups in malta_int.c, Dmitri Vorobiev |
|---|---|
| Next by Date: | [PATCH 4/5] [MIPS] Make gcmp_probe() static, Dmitri Vorobiev |
| Previous by Thread: | [PATCH 3/5] [MIPS] A few cleanups in malta_int.c, Dmitri Vorobiev |
| Next by Thread: | [PATCH 4/5] [MIPS] Make gcmp_probe() static, Dmitri Vorobiev |
| Indexes: | [Date] [Thread] [Top] [All Lists] |