diff options
author | Dmitri Vorobiev <dmitri.vorobiev@movial.fi> | 2008-07-15 12:57:30 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-20 09:38:17 -0400 |
commit | 3450004a8cec8bab246372a1cabb9c2483b1e6c3 (patch) | |
tree | 4aab06c0b6f8f35730b931b1f2dc96383fa47f14 | |
parent | 5b664cb235e97afbf34db9c4d77f08ebd725335e (diff) |
[MIPS] PCI: Make the pcibios_max_latency variable static
The pcibios_max_latency variable is needlessly defined global, and this
patch makes it static.
Build-tested using malta_defconfig.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/pci/pci.c | 2 | ||||
-rw-r--r-- | include/asm-mips/pci.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index d7d6cb063d26..77bd5b68dc43 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c | |||
@@ -204,7 +204,7 @@ static int pcibios_enable_resources(struct pci_dev *dev, int mask) | |||
204 | * If we set up a device for bus mastering, we need to check the latency | 204 | * If we set up a device for bus mastering, we need to check the latency |
205 | * timer as certain crappy BIOSes forget to set it properly. | 205 | * timer as certain crappy BIOSes forget to set it properly. |
206 | */ | 206 | */ |
207 | unsigned int pcibios_max_latency = 255; | 207 | static unsigned int pcibios_max_latency = 255; |
208 | 208 | ||
209 | void pcibios_set_master(struct pci_dev *dev) | 209 | void pcibios_set_master(struct pci_dev *dev) |
210 | { | 210 | { |
diff --git a/include/asm-mips/pci.h b/include/asm-mips/pci.h index d3be83436070..c205875d7f31 100644 --- a/include/asm-mips/pci.h +++ b/include/asm-mips/pci.h | |||
@@ -173,6 +173,5 @@ static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel) | |||
173 | } | 173 | } |
174 | 174 | ||
175 | extern int pci_probe_only; | 175 | extern int pci_probe_only; |
176 | extern unsigned int pcibios_max_latency; | ||
177 | 176 | ||
178 | #endif /* _ASM_PCI_H */ | 177 | #endif /* _ASM_PCI_H */ |