[PATCH] [ARM] orion5x: fix compiler cast warnings in ts78xx-setup.c
Alexander Clouter
alex at digriz.org.uk
Sat Mar 5 06:31:04 EST 2011
Signed-off-by: Alexander Clouter <alex at digriz.org.uk>
---
arch/arm/mach-orion5x/ts78xx-setup.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c
index 82e57a6..78e3b9a 100644
--- a/arch/arm/mach-orion5x/ts78xx-setup.c
+++ b/arch/arm/mach-orion5x/ts78xx-setup.c
@@ -200,7 +200,7 @@ static void ts78xx_ts_nand_write_buf(struct mtd_info *mtd,
int sz;
if (off) {
- sz = min(4 - off, len);
+ sz = min((int) (4 - off), len);
writesb(io_base, buf, sz);
buf += sz;
len -= sz;
@@ -227,7 +227,7 @@ static void ts78xx_ts_nand_read_buf(struct mtd_info *mtd,
int sz;
if (off) {
- sz = min(4 - off, len);
+ sz = min((int) (4 - off), len);
readsb(io_base, buf, sz);
buf += sz;
len -= sz;
--
1.7.4.1
More information about the linux-arm-kernel
mailing list