All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM/ARM26 Cleanup, using ARRAY_SIZE
@ 2007-05-23 17:27 Gerb Stralko
  2007-05-23 18:10 ` Russell King
  0 siblings, 1 reply; 3+ messages in thread
From: Gerb Stralko @ 2007-05-23 17:27 UTC (permalink / raw)
  To: rmk+lkml; +Cc: Linux Kernel

Use the kernel wide ARRAY_SIZE when determining the array size of a struct.

Signed-off-by: Jerry Stralko <gerb.stralko@gmail.com>

---

diff --git a/arch/arm/kernel/dma-isa.c b/arch/arm/kernel/dma-isa.c
index 0a3e9ad..c94ad71 100644
--- a/arch/arm/kernel/dma-isa.c
+++ b/arch/arm/kernel/dma-isa.c
@@ -19,6 +19,7 @@
 #include <linux/ioport.h>
 #include <linux/init.h>
 #include <linux/dma-mapping.h>
+#include <linux/kernel.h>

 #include <asm/dma.h>
 #include <asm/io.h>
@@ -216,7 +217,7 @@ void __init isa_init_dma(dma_t *dma)

                request_dma(DMA_ISA_CASCADE, "cascade");

-               for (i = 0; i < sizeof(dma_resources) /
sizeof(dma_resources[0]); i++)
+               for (i = 0; i < ARRAY_SIZE(dma_resources); i++)
                        request_resource(&ioport_resource, dma_resources + i);
        }
 }

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-05-23 18:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-23 17:27 [PATCH] ARM/ARM26 Cleanup, using ARRAY_SIZE Gerb Stralko
2007-05-23 18:10 ` Russell King
2007-05-23 18:48   ` Gerb Stralko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.