diff options
author | Tobias Klauser <tklauser@nuerscht.ch> | 2006-01-09 23:54:02 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:56 -0500 |
commit | fe971071a89c5c5184fc9f3482c7a8e997cf0520 (patch) | |
tree | 74a29e80d5636255f33c750482497a32d8d3491f /drivers/char/rio | |
parent | 3c6bee1d4037a5c569f30d40bd852a57ba250912 (diff) |
[PATCH] drivers/char: Use ARRAY_SIZE macro
Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0]) and remove
duplicates of ARRAY_SIZE.
Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/rio')
-rw-r--r-- | drivers/char/rio/rio_linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/rio/rio_linux.c b/drivers/char/rio/rio_linux.c index 2611b15b6bd1..7085a38532b3 100644 --- a/drivers/char/rio/rio_linux.c +++ b/drivers/char/rio/rio_linux.c | |||
@@ -211,7 +211,7 @@ static int rio_poll = 1; | |||
211 | or less.... */ | 211 | or less.... */ |
212 | static int rio_probe_addrs[]= {0xc0000, 0xd0000, 0xe0000}; | 212 | static int rio_probe_addrs[]= {0xc0000, 0xd0000, 0xe0000}; |
213 | 213 | ||
214 | #define NR_RIO_ADDRS (sizeof(rio_probe_addrs)/sizeof (int)) | 214 | #define NR_RIO_ADDRS ARRAY_SIZE(rio_probe_addrs) |
215 | 215 | ||
216 | 216 | ||
217 | /* Set the mask to all-ones. This alas, only supports 32 interrupts. | 217 | /* Set the mask to all-ones. This alas, only supports 32 interrupts. |