소스 검색

[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: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
akpm@linux-foundation.org 18 년 전
부모
커밋
f96880d1e8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      drivers/mtd/nand/alauda.c

+ 1 - 1
drivers/mtd/nand/alauda.c

@@ -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,