diff options
author | Ahmed S. Darwish <darwish.07@gmail.com> | 2007-02-05 04:42:11 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-06 16:53:19 +0000 |
commit | 25b8ac3ba46ee3d586a9c00c1771dca58314714e (patch) | |
tree | 21cd719307ab78f18ca6cb82a56310e27a89b021 /arch/mips/arc | |
parent | 3e7f9b8254b82f7261b2c56ffaf864198c135ee5 (diff) | |
download | linux-25b8ac3ba46ee3d586a9c00c1771dca58314714e.tar.bz2 |
[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) { int i; - for (i = 0; i < (sizeof(mach_table) / sizeof (mach_table[0])); i++) { + for (i = 0; i < ARRAY_SIZE(mach_table); i++) { if (!strcmp(s, mach_table[i].arcname)) return &mach_table[i]; } |