summary refs log tree commit diff stats
path: root/hw/sh_intc.h
diff options
context:
space:
mode:
authormalc <malc@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-22 20:33:55 +0000
committermalc <malc@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-22 20:33:55 +0000
commitb1503cda1e78cad4dca522ddbb4c69f4c6869bcd (patch)
tree26edd30543fcb27ae90f8762558ea878df42ec57 /hw/sh_intc.h
parent5626b017d623cb88d973b53bca11613c766b1715 (diff)
downloadfocaccia-qemu-b1503cda1e78cad4dca522ddbb4c69f4c6869bcd.tar.gz
focaccia-qemu-b1503cda1e78cad4dca522ddbb4c69f4c6869bcd.zip
Use the ARRAY_SIZE() macro where appropriate.
Change from v1:
  Avoid changing the existing coding style in certain files.

Signed-off-by: Stuart Brady <stuart.brady@gmail.com>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6120 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/sh_intc.h')
-rw-r--r--hw/sh_intc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sh_intc.h b/hw/sh_intc.h
index 4e36f007d7..a9750ae9b1 100644
--- a/hw/sh_intc.h
+++ b/hw/sh_intc.h
@@ -32,7 +32,7 @@ struct intc_prio_reg {
     unsigned long value;
 };
 
-#define _INTC_ARRAY(a) a, sizeof(a)/sizeof(*a)
+#define _INTC_ARRAY(a) a, ARRAY_SIZE(a)
 
 struct intc_source {
     unsigned short vect;