diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2009-09-16 20:25:07 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-09-17 14:07:51 -0400 |
commit | 982f6ffeeed5ef6104cfd72e517ff9e7a9270fda (patch) | |
tree | cfe3546c4983d29deb1794890dcfd26ea480296a /arch/mips/pci | |
parent | 2882b0c63ac6085fd5c18959240b6f7d6ffb8d5b (diff) |
MIPS: Remove useless zero initializations.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pci')
-rw-r--r-- | arch/mips/pci/pci-bcm1480.c | 2 | ||||
-rw-r--r-- | arch/mips/pci/pci-bcm1480ht.c | 2 | ||||
-rw-r--r-- | arch/mips/pci/pci-sb1250.c | 2 | ||||
-rw-r--r-- | arch/mips/pci/pci.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/arch/mips/pci/pci-bcm1480.c b/arch/mips/pci/pci-bcm1480.c index a9060c771840..6f5e24c6ae67 100644 --- a/arch/mips/pci/pci-bcm1480.c +++ b/arch/mips/pci/pci-bcm1480.c | |||
@@ -57,7 +57,7 @@ static void *cfg_space; | |||
57 | #define PCI_BUS_ENABLED 1 | 57 | #define PCI_BUS_ENABLED 1 |
58 | #define PCI_DEVICE_MODE 2 | 58 | #define PCI_DEVICE_MODE 2 |
59 | 59 | ||
60 | static int bcm1480_bus_status = 0; | 60 | static int bcm1480_bus_status; |
61 | 61 | ||
62 | #define PCI_BRIDGE_DEVICE 0 | 62 | #define PCI_BRIDGE_DEVICE 0 |
63 | 63 | ||
diff --git a/arch/mips/pci/pci-bcm1480ht.c b/arch/mips/pci/pci-bcm1480ht.c index f54f45412b0b..50cc6e9e8240 100644 --- a/arch/mips/pci/pci-bcm1480ht.c +++ b/arch/mips/pci/pci-bcm1480ht.c | |||
@@ -56,7 +56,7 @@ static void *ht_cfg_space; | |||
56 | #define PCI_BUS_ENABLED 1 | 56 | #define PCI_BUS_ENABLED 1 |
57 | #define PCI_DEVICE_MODE 2 | 57 | #define PCI_DEVICE_MODE 2 |
58 | 58 | ||
59 | static int bcm1480ht_bus_status = 0; | 59 | static int bcm1480ht_bus_status; |
60 | 60 | ||
61 | #define PCI_BRIDGE_DEVICE 0 | 61 | #define PCI_BRIDGE_DEVICE 0 |
62 | #define HT_BRIDGE_DEVICE 1 | 62 | #define HT_BRIDGE_DEVICE 1 |
diff --git a/arch/mips/pci/pci-sb1250.c b/arch/mips/pci/pci-sb1250.c index bf639590b8b2..ada24e6f951f 100644 --- a/arch/mips/pci/pci-sb1250.c +++ b/arch/mips/pci/pci-sb1250.c | |||
@@ -58,7 +58,7 @@ static void *cfg_space; | |||
58 | #define LDT_BUS_ENABLED 2 | 58 | #define LDT_BUS_ENABLED 2 |
59 | #define PCI_DEVICE_MODE 4 | 59 | #define PCI_DEVICE_MODE 4 |
60 | 60 | ||
61 | static int sb1250_bus_status = 0; | 61 | static int sb1250_bus_status; |
62 | 62 | ||
63 | #define PCI_BRIDGE_DEVICE 0 | 63 | #define PCI_BRIDGE_DEVICE 0 |
64 | #define LDT_BRIDGE_DEVICE 1 | 64 | #define LDT_BRIDGE_DEVICE 1 |
diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index b0eb9e75c682..9a11c2226891 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c | |||
@@ -31,8 +31,8 @@ unsigned int pci_probe = PCI_ASSIGN_ALL_BUSSES; | |||
31 | 31 | ||
32 | static struct pci_controller *hose_head, **hose_tail = &hose_head; | 32 | static struct pci_controller *hose_head, **hose_tail = &hose_head; |
33 | 33 | ||
34 | unsigned long PCIBIOS_MIN_IO = 0x0000; | 34 | unsigned long PCIBIOS_MIN_IO; |
35 | unsigned long PCIBIOS_MIN_MEM = 0; | 35 | unsigned long PCIBIOS_MIN_MEM; |
36 | 36 | ||
37 | static int pci_initialized; | 37 | static int pci_initialized; |
38 | 38 | ||