浏览代码

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>
Alejandro Martinez Ruiz 17 年之前
父节点
当前提交
0a8320b04c
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      drivers/dio/dio.c

+ 1 - 3
drivers/dio/dio.c

@@ -88,8 +88,6 @@ static struct dioname names[] =
 #undef DIONAME
 #undef DIONAME
 #undef DIOFBNAME
 #undef DIOFBNAME
 
 
-#define NUMNAMES (sizeof(names) / sizeof(struct dioname))
-
 static const char *unknowndioname 
 static const char *unknowndioname 
         = "unknown DIO board -- please email <linux-m68k@lists.linux-m68k.org>!";
         = "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 */
         /* return pointer to a constant string describing the board with given ID */
 	unsigned int i;
 	unsigned int i;
-        for (i = 0; i < NUMNAMES; i++)
+	for (i = 0; i < ARRAY_SIZE(names); i++)
                 if (names[i].id == id) 
                 if (names[i].id == id) 
                         return names[i].name;
                         return names[i].name;