diff options
author | Alejandro Martinez Ruiz <alex@flawedcode.org> | 2008-02-04 22:30:19 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 09:44:23 -0800 |
commit | 0a8320b04c0762a1c65b5800b84023b454c2da54 (patch) | |
tree | cc73c9304a5c4ca56e337683a44730724d6688d7 /drivers/dio | |
parent | b9e5e119fd9905c2a06f73a96f9c18aa760a8a65 (diff) | |
download | linux-3.10-0a8320b04c0762a1c65b5800b84023b454c2da54.tar.gz linux-3.10-0a8320b04c0762a1c65b5800b84023b454c2da54.tar.bz2 linux-3.10-0a8320b04c0762a1c65b5800b84023b454c2da54.zip |
dio: ARRAY_SIZE() cleanup
[Geert: eliminate NUMNAMES, as suggested by Richard Knutsson ]
[akpm@linux-foundation.org: coding-syle fixes]
Signed-off-by: Alejandro Martinez Ruiz <alex@flawedcode.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Richard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/dio')
-rw-r--r-- | drivers/dio/dio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/dio/dio.c b/drivers/dio/dio.c index 17502d6efae..07f274f853d 100644 --- a/drivers/dio/dio.c +++ b/drivers/dio/dio.c @@ -88,8 +88,6 @@ static struct dioname names[] = #undef DIONAME #undef DIOFBNAME -#define NUMNAMES (sizeof(names) / sizeof(struct dioname)) - static const char *unknowndioname = "unknown DIO board -- please email <linux-m68k@lists.linux-m68k.org>!"; @@ -97,7 +95,7 @@ static const char *dio_getname(int id) { /* return pointer to a constant string describing the board with given ID */ unsigned int i; - for (i = 0; i < NUMNAMES; i++) + for (i = 0; i < ARRAY_SIZE(names); i++) if (names[i].id == id) return names[i].name; |