Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1009,7 +1009,7 @@ ecard_probe(int slot, card_type_t type)
		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 &&
		    blacklist[i].product == ec->cid.product) {
			ec->card_desc = blacklist[i].type;