summaryrefslogtreecommitdiffstats
path: root/arch/sparc/kernel/pcic.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@nuerscht.ch>2005-11-09 12:03:05 -0800
committerDavid S. Miller <davem@davemloft.net>2005-11-09 12:03:05 -0800
commit940fdc6e1223f1323b88b7f1e7ae09a93a76b74d (patch)
tree5a4ea9eb953dedae6bc0b7828a63133f16a5902a /arch/sparc/kernel/pcic.c
parenta5ee3634630c218e86afc5bae2acb55b9e47625d (diff)
downloadlinux-0-day-940fdc6e1223f1323b88b7f1e7ae09a93a76b74d.tar.gz
linux-0-day-940fdc6e1223f1323b88b7f1e7ae09a93a76b74d.tar.xz
[SPARC]: Use ARRAY_SIZE macro
Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0]) and remove a duplicate of ARRAY_SIZE which is never used anyways. Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/pcic.c')
-rw-r--r--arch/sparc/kernel/pcic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/pcic.c b/arch/sparc/kernel/pcic.c
index 25e31d5ec99b5..cccfc12802ed7 100644
--- a/arch/sparc/kernel/pcic.c
+++ b/arch/sparc/kernel/pcic.c
@@ -143,7 +143,7 @@ static struct pcic_ca2irq pcic_i_jk[] = {
* as several PROMs may be installed on the same physical board.
*/
#define SN2L_INIT(name, map) \
- { name, map, sizeof(map)/sizeof(struct pcic_ca2irq) }
+ { name, map, ARRAY_SIZE(map) }
static struct pcic_sn2list pcic_known_sysnames[] = {
SN2L_INIT("SUNW,JavaEngine1", pcic_i_je1a), /* JE1, PROM 2.32 */