Commit eeea82ff authored by Ahmed S. Darwish's avatar Ahmed S. Darwish Committed by Russell King

[ARM] Use ARRAY_SIZE macro when appropriate

Use ARRAY_SIZE macro already defined in linux/kernel.h
Signed-off-by: default avatarAhmed S. Darwish <darwish.07@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 00584719
...@@ -1009,7 +1009,7 @@ ecard_probe(int slot, card_type_t type) ...@@ -1009,7 +1009,7 @@ ecard_probe(int slot, card_type_t type)
ec->fiqmask = 4; ec->fiqmask = 4;
} }
for (i = 0; i < sizeof(blacklist) / sizeof(*blacklist); i++) for (i = 0; i < ARRAY_SIZE(blacklist); i++)
if (blacklist[i].manufacturer == ec->cid.manufacturer && if (blacklist[i].manufacturer == ec->cid.manufacturer &&
blacklist[i].product == ec->cid.product) { blacklist[i].product == ec->cid.product) {
ec->card_desc = blacklist[i].type; ec->card_desc = blacklist[i].type;
......
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