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

Commit f96880d1 authored by Andrew Morton's avatar Andrew Morton Committed by David Woodhouse
Browse files

[MTD] [NAND] Fix compiler warning in Alauda driver



drivers/mtd/nand/alauda.c: In function 'alauda_bounce_read':
drivers/mtd/nand/alauda.c:412: warning: comparison of distinct pointer types lacks a cast

Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent 4fc8a607
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -408,7 +408,7 @@ static int alauda_bounce_read(struct mtd_info *mtd, loff_t from, size_t len,
	*retlen = len;
	while (len) {
		u8 oob[16];
		u32 byte = from & al->bytemask;
		size_t byte = from & al->bytemask;
		size_t cplen = min(len, mtd->writesize - byte);

		err = alauda_read_page(mtd, from, bounce_buf, oob,