aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/nand/mxc_nand.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c
index dba262bf766f..23e075428dc4 100644
--- a/drivers/mtd/nand/mxc_nand.c
+++ b/drivers/mtd/nand/mxc_nand.c
@@ -280,14 +280,10 @@ static void memcpy32_fromio(void *trg, const void __iomem *src, size_t size)
280 *t++ = __raw_readl(s++); 280 *t++ = __raw_readl(s++);
281} 281}
282 282
283static void memcpy32_toio(void __iomem *trg, const void *src, int size) 283static inline void memcpy32_toio(void __iomem *trg, const void *src, int size)
284{ 284{
285 int i; 285 /* __iowrite32_copy use 32bit size values so divide by 4 */
286 u32 __iomem *t = trg; 286 __iowrite32_copy(trg, src, size / 4);
287 const u32 *s = src;
288
289 for (i = 0; i < (size >> 2); i++)
290 __raw_writel(*s++, t++);
291} 287}
292 288
293static int check_int_v3(struct mxc_nand_host *host) 289static int check_int_v3(struct mxc_nand_host *host)