diff options
author | Ahmed S. Darwish <darwish.07@gmail.com> | 2007-02-04 21:42:11 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-06 11:53:19 -0500 |
commit | 25b8ac3ba46ee3d586a9c00c1771dca58314714e (patch) | |
tree | 21cd719307ab78f18ca6cb82a56310e27a89b021 /arch/mips/arc | |
parent | 3e7f9b8254b82f7261b2c56ffaf864198c135ee5 (diff) |
[MIPS] Use ARRAY_SIZE macro when appropriate
Signed-off-by: Ahmed S. Darwish <darwish.07@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/arc')
-rw-r--r-- | arch/mips/arc/identify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/arc/identify.c b/arch/mips/arc/identify.c index 3ba7c47f9f23..4b907369b0f9 100644 --- a/arch/mips/arc/identify.c +++ b/arch/mips/arc/identify.c | |||
@@ -77,7 +77,7 @@ static struct smatch * __init string_to_mach(const char *s) | |||
77 | { | 77 | { |
78 | int i; | 78 | int i; |
79 | 79 | ||
80 | for (i = 0; i < (sizeof(mach_table) / sizeof (mach_table[0])); i++) { | 80 | for (i = 0; i < ARRAY_SIZE(mach_table); i++) { |
81 | if (!strcmp(s, mach_table[i].arcname)) | 81 | if (!strcmp(s, mach_table[i].arcname)) |
82 | return &mach_table[i]; | 82 | return &mach_table[i]; |
83 | } | 83 | } |