Commit fd863db9 authored by Ahmed S. Darwish's avatar Ahmed S. Darwish Committed by Linus Torvalds

[PATCH] isdn/capi: use ARRAY_SIZE when appropriate

Signed-off-by: default avatarAhmed S. Darwish <darwish.07@gmail.com>
Acked-by: default avatarKarsten Keil <kkeil@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent fc238b37
...@@ -1456,7 +1456,7 @@ static struct procfsentries { ...@@ -1456,7 +1456,7 @@ static struct procfsentries {
static void __init proc_init(void) static void __init proc_init(void)
{ {
int nelem = sizeof(procfsentries)/sizeof(procfsentries[0]); int nelem = ARRAY_SIZE(procfsentries);
int i; int i;
for (i=0; i < nelem; i++) { for (i=0; i < nelem; i++) {
...@@ -1468,7 +1468,7 @@ static void __init proc_init(void) ...@@ -1468,7 +1468,7 @@ static void __init proc_init(void)
static void __exit proc_exit(void) static void __exit proc_exit(void)
{ {
int nelem = sizeof(procfsentries)/sizeof(procfsentries[0]); int nelem = ARRAY_SIZE(procfsentries);
int i; int i;
for (i=nelem-1; i >= 0; i--) { for (i=nelem-1; i >= 0; i--) {
......
...@@ -2218,7 +2218,7 @@ static struct procfsentries { ...@@ -2218,7 +2218,7 @@ static struct procfsentries {
static void __init proc_init(void) static void __init proc_init(void)
{ {
int nelem = sizeof(procfsentries)/sizeof(procfsentries[0]); int nelem = ARRAY_SIZE(procfsentries);
int i; int i;
for (i=0; i < nelem; i++) { for (i=0; i < nelem; i++) {
...@@ -2230,7 +2230,7 @@ static void __init proc_init(void) ...@@ -2230,7 +2230,7 @@ static void __init proc_init(void)
static void __exit proc_exit(void) static void __exit proc_exit(void)
{ {
int nelem = sizeof(procfsentries)/sizeof(procfsentries[0]); int nelem = ARRAY_SIZE(procfsentries);
int i; int i;
for (i=nelem-1; i >= 0; i--) { for (i=nelem-1; i >= 0; i--) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment