diff options
author | akpm@linux-foundation.org <akpm@linux-foundation.org> | 2007-10-11 03:02:06 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-10-13 09:33:27 -0400 |
commit | f96880d1e859e3937eb691da8293700b8eec17b3 (patch) | |
tree | 94908a8d308189a1a40a0369ea3b4eb916064f82 /drivers/mtd/nand | |
parent | 4fc8a6078660be781d6ddf4daddfd9d817d2a455 (diff) |
[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>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r-- | drivers/mtd/nand/alauda.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/alauda.c b/drivers/mtd/nand/alauda.c index 2c29854b4241..257937cd99bf 100644 --- a/drivers/mtd/nand/alauda.c +++ b/drivers/mtd/nand/alauda.c | |||
@@ -408,7 +408,7 @@ static int alauda_bounce_read(struct mtd_info *mtd, loff_t from, size_t len, | |||
408 | *retlen = len; | 408 | *retlen = len; |
409 | while (len) { | 409 | while (len) { |
410 | u8 oob[16]; | 410 | u8 oob[16]; |
411 | u32 byte = from & al->bytemask; | 411 | size_t byte = from & al->bytemask; |
412 | size_t cplen = min(len, mtd->writesize - byte); | 412 | size_t cplen = min(len, mtd->writesize - byte); |
413 | 413 | ||
414 | err = alauda_read_page(mtd, from, bounce_buf, oob, | 414 | err = alauda_read_page(mtd, from, bounce_buf, oob, |