kdb: use ARRAY_SIZE where possible

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
This commit is contained in:
Sasha Levin 2012-12-20 14:11:27 -05:00 committed by Jason Wessel
parent e78acf67ba
commit 5f784f798c

View File

@ -124,7 +124,7 @@ static kdbmsg_t kdbmsgs[] = {
}; };
#undef KDBMSG #undef KDBMSG
static const int __nkdb_err = sizeof(kdbmsgs) / sizeof(kdbmsg_t); static const int __nkdb_err = ARRAY_SIZE(kdbmsgs);
/* /*
@ -175,7 +175,7 @@ static char *__env[] = {
(char *)0, (char *)0,
}; };
static const int __nenv = (sizeof(__env) / sizeof(char *)); static const int __nenv = ARRAY_SIZE(__env);
struct task_struct *kdb_curr_task(int cpu) struct task_struct *kdb_curr_task(int cpu)
{ {