diff options
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 17502d6efae7..07f274f853d9 100644 --- a/drivers/dio/dio.c +++ b/drivers/dio/dio.c | |||
@@ -88,8 +88,6 @@ static struct dioname names[] = | |||
88 | #undef DIONAME | 88 | #undef DIONAME |
89 | #undef DIOFBNAME | 89 | #undef DIOFBNAME |
90 | 90 | ||
91 | #define NUMNAMES (sizeof(names) / sizeof(struct dioname)) | ||
92 | |||
93 | static const char *unknowndioname | 91 | static const char *unknowndioname |
94 | = "unknown DIO board -- please email <linux-m68k@lists.linux-m68k.org>!"; | 92 | = "unknown DIO board -- please email <linux-m68k@lists.linux-m68k.org>!"; |
95 | 93 | ||
@@ -97,7 +95,7 @@ static const char *dio_getname(int id) | |||
97 | { | 95 | { |
98 | /* return pointer to a constant string describing the board with given ID */ | 96 | /* return pointer to a constant string describing the board with given ID */ |
99 | unsigned int i; | 97 | unsigned int i; |
100 | for (i = 0; i < NUMNAMES; i++) | 98 | for (i = 0; i < ARRAY_SIZE(names); i++) |
101 | if (names[i].id == id) | 99 | if (names[i].id == id) |
102 | return names[i].name; | 100 | return names[i].name; |
103 | 101 | ||