diff options
author | Stoyan Gaydarov <sgayda2@uiuc.edu> | 2009-07-22 05:02:33 +0200 |
---|---|---|
committer | Jesper Nilsson <jesper.nilsson@axis.com> | 2009-09-01 17:38:50 +0200 |
commit | 62f589c5e391dc2081db42e801382304c652e43a (patch) | |
tree | 352e8d8360daf26cd70aa890c05b9090c883bad3 /arch/cris/arch-v32/mach-fs | |
parent | 0395ac6447c05e9393d4f8187ea6588b9d1daeb7 (diff) | |
download | blackbird-obmc-linux-62f589c5e391dc2081db42e801382304c652e43a.tar.gz blackbird-obmc-linux-62f589c5e391dc2081db42e801382304c652e43a.zip |
ARRAY_SIZE changes
These changes were a direct result of using a semantic patch
More information can be found at http://www.emn.fr/x-info/coccinelle/
Signed-off-by: Stoyan Gaydarov <sgayda2@uiuc.edu>
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'arch/cris/arch-v32/mach-fs')
-rw-r--r-- | arch/cris/arch-v32/mach-fs/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/cris/arch-v32/mach-fs/io.c b/arch/cris/arch-v32/mach-fs/io.c index cb6327b1f8f8..a6958661fa8e 100644 --- a/arch/cris/arch-v32/mach-fs/io.c +++ b/arch/cris/arch-v32/mach-fs/io.c @@ -52,7 +52,7 @@ struct crisv32_ioport crisv32_ioports[] = { } }; -#define NBR_OF_PORTS sizeof(crisv32_ioports)/sizeof(struct crisv32_ioport) +#define NBR_OF_PORTS ARRAY_SIZE(crisv32_ioports) struct crisv32_iopin crisv32_led_net0_green; struct crisv32_iopin crisv32_led_net0_red; |