diff options
author | Ahmed S. Darwish <darwish.07@gmail.com> | 2007-02-04 21:42:11 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-06 11:53:19 -0500 |
commit | 25b8ac3ba46ee3d586a9c00c1771dca58314714e (patch) | |
tree | 21cd719307ab78f18ca6cb82a56310e27a89b021 /arch/mips/mips-boards/malta | |
parent | 3e7f9b8254b82f7261b2c56ffaf864198c135ee5 (diff) |
[MIPS] Use ARRAY_SIZE macro when appropriate
Signed-off-by: Ahmed S. Darwish <darwish.07@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mips-boards/malta')
-rw-r--r-- | arch/mips/mips-boards/malta/malta_int.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/mips/mips-boards/malta/malta_int.c b/arch/mips/mips-boards/malta/malta_int.c index d9ddb170e595..3c206bb17160 100644 --- a/arch/mips/mips-boards/malta/malta_int.c +++ b/arch/mips/mips-boards/malta/malta_int.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/slab.h> | 27 | #include <linux/slab.h> |
28 | #include <linux/interrupt.h> | 28 | #include <linux/interrupt.h> |
29 | #include <linux/kernel_stat.h> | 29 | #include <linux/kernel_stat.h> |
30 | #include <linux/kernel.h> | ||
30 | #include <linux/random.h> | 31 | #include <linux/random.h> |
31 | 32 | ||
32 | #include <asm/i8259.h> | 33 | #include <asm/i8259.h> |
@@ -289,7 +290,7 @@ msc_irqmap_t __initdata msc_irqmap[] = { | |||
289 | {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0}, | 290 | {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0}, |
290 | {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0}, | 291 | {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0}, |
291 | }; | 292 | }; |
292 | int __initdata msc_nr_irqs = sizeof(msc_irqmap)/sizeof(msc_irqmap_t); | 293 | int __initdata msc_nr_irqs = ARRAY_SIZE(msc_irqmap); |
293 | 294 | ||
294 | msc_irqmap_t __initdata msc_eicirqmap[] = { | 295 | msc_irqmap_t __initdata msc_eicirqmap[] = { |
295 | {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0}, | 296 | {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0}, |
@@ -303,7 +304,7 @@ msc_irqmap_t __initdata msc_eicirqmap[] = { | |||
303 | {MSC01E_INT_PERFCTR, MSC01_IRQ_LEVEL, 0}, | 304 | {MSC01E_INT_PERFCTR, MSC01_IRQ_LEVEL, 0}, |
304 | {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0} | 305 | {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0} |
305 | }; | 306 | }; |
306 | int __initdata msc_nr_eicirqs = sizeof(msc_eicirqmap)/sizeof(msc_irqmap_t); | 307 | int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap); |
307 | 308 | ||
308 | void __init arch_init_irq(void) | 309 | void __init arch_init_irq(void) |
309 | { | 310 | { |