diff options
author | Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | 2014-03-03 11:42:39 -0500 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2014-03-04 07:49:48 -0500 |
commit | 9981e14ab2f7c6a4d2bb45e51a6371964919837d (patch) | |
tree | d8e36af46bacebfb418166097ba8c91c54f14dc7 /drivers/mtd/ubi | |
parent | ca2b722d1ab5bc3ffc34b5995248968cd8a7cb6f (diff) |
UBI: block: Use 'u64' for the 64-bit dividend
Fixes the following warning on ARCH=avr32:
drivers/mtd/ubi/block.c: In function 'ubiblock_read':
drivers/mtd/ubi/block.c:207: warning: comparison of distinct pointer types lacks a cast
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'drivers/mtd/ubi')
-rw-r--r-- | drivers/mtd/ubi/block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/block.c b/drivers/mtd/ubi/block.c index cd6be981be30..16e67318acf3 100644 --- a/drivers/mtd/ubi/block.c +++ b/drivers/mtd/ubi/block.c | |||
@@ -201,7 +201,7 @@ static int ubiblock_read(struct ubiblock *dev, char *buffer, | |||
201 | int ret, leb, offset; | 201 | int ret, leb, offset; |
202 | int bytes_left = len; | 202 | int bytes_left = len; |
203 | int to_read = len; | 203 | int to_read = len; |
204 | loff_t pos = sec << 9; | 204 | u64 pos = sec << 9; |
205 | 205 | ||
206 | /* Get LEB:offset address to read from */ | 206 | /* Get LEB:offset address to read from */ |
207 | offset = do_div(pos, dev->leb_size); | 207 | offset = do_div(pos, dev->leb_size); |