diff options
author | Dmitri Vorobiev <dmitri.vorobiev@gmail.com> | 2008-03-31 18:03:25 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-04-28 12:14:28 -0400 |
commit | b57c1913b4dd3bc070cbfccffff3768965a81282 (patch) | |
tree | ae36fec593881fef3671a754781f58181b29daa6 /arch/mips/mips-boards | |
parent | 52d65cf87f439c5264527c3628d12a26322524eb (diff) |
[MIPS] malta_int.c: make 4 variables static
The following variables defined in arch/mips/mips-boards/malta/malta_int.c
can become static: msc_irqmap[], msc_nr_irqs, msc_eicirqmap[], and
msc_nr_eicirqs. This patch makes them static.
Successfully build-tested using default configs for Malta, Atlas
and SEAD boards.
Runtime test successfully performed by booting the Malta 4Kc board
up to the shell prompt.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mips-boards')
-rw-r--r-- | arch/mips/mips-boards/malta/malta_int.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/mips-boards/malta/malta_int.c b/arch/mips/mips-boards/malta/malta_int.c index e1744ae855ce..8c495104b321 100644 --- a/arch/mips/mips-boards/malta/malta_int.c +++ b/arch/mips/mips-boards/malta/malta_int.c | |||
@@ -342,13 +342,13 @@ static struct irqaction corehi_irqaction = { | |||
342 | .name = "CoreHi" | 342 | .name = "CoreHi" |
343 | }; | 343 | }; |
344 | 344 | ||
345 | msc_irqmap_t __initdata msc_irqmap[] = { | 345 | static msc_irqmap_t __initdata msc_irqmap[] = { |
346 | {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0}, | 346 | {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0}, |
347 | {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0}, | 347 | {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0}, |
348 | }; | 348 | }; |
349 | int __initdata msc_nr_irqs = ARRAY_SIZE(msc_irqmap); | 349 | static int __initdata msc_nr_irqs = ARRAY_SIZE(msc_irqmap); |
350 | 350 | ||
351 | msc_irqmap_t __initdata msc_eicirqmap[] = { | 351 | static msc_irqmap_t __initdata msc_eicirqmap[] = { |
352 | {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0}, | 352 | {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0}, |
353 | {MSC01E_INT_SW1, MSC01_IRQ_LEVEL, 0}, | 353 | {MSC01E_INT_SW1, MSC01_IRQ_LEVEL, 0}, |
354 | {MSC01E_INT_I8259A, MSC01_IRQ_LEVEL, 0}, | 354 | {MSC01E_INT_I8259A, MSC01_IRQ_LEVEL, 0}, |
@@ -361,7 +361,7 @@ msc_irqmap_t __initdata msc_eicirqmap[] = { | |||
361 | {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0} | 361 | {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0} |
362 | }; | 362 | }; |
363 | 363 | ||
364 | int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap); | 364 | static int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap); |
365 | 365 | ||
366 | /* | 366 | /* |
367 | * This GIC specific tabular array defines the association between External | 367 | * This GIC specific tabular array defines the association between External |