diff options
author | Ahmed S. Darwish <darwish.07@gmail.com> | 2007-02-05 03:42:11 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-06 17:53:19 +0100 |
commit | 25b8ac3ba46ee3d586a9c00c1771dca58314714e (patch) | |
tree | 21cd719307ab78f18ca6cb82a56310e27a89b021 /arch/mips/arc | |
parent | [MIPS] Fix some whitespace damage (diff) | |
download | linux-25b8ac3ba46ee3d586a9c00c1771dca58314714e.tar.xz linux-25b8ac3ba46ee3d586a9c00c1771dca58314714e.zip |
[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]; } |