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

Commit 8447157a authored by Ahmed S. Darwish's avatar Ahmed S. Darwish Committed by Linus Torvalds
Browse files

[PATCH] CRIS: user 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>
Cc: Mikael Starvik <starvik@axis.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 047c7c42
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -359,8 +359,7 @@ static struct mtd_info *flash_probe(void)
		 * So we use the MTD concatenation layer instead of further
		 * complicating the probing procedure.
		 */
		mtd_cse = mtd_concat_create(mtds,
					    sizeof(mtds) / sizeof(mtds[0]),
		mtd_cse = mtd_concat_create(mtds, ARRAY_SIZE(mtds),
					    "cse0+cse1");
#else
		printk(KERN_ERR "%s and %s: Cannot concatenate due to kernel "
+2 −1
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@
 */

#include <linux/init.h>
#include <linux/kernel.h>
#include <asm/tlb.h>

#define D(x)
@@ -100,7 +101,7 @@ tlb_init(void)

	/* clear the page_id map */

	for (i = 1; i < sizeof (page_id_map) / sizeof (page_id_map[0]); i++)
	for (i = 1; i < ARRAY_SIZE(page_id_map); i++)
		page_id_map[i] = NULL;
	
	/* invalidate the entire TLB */