Lines Matching defs:from
206 * As we can see from above, the addresses aren't mangled across
425 static int flash_read (struct mtd_info *mtd,loff_t from,size_t len,size_t *retlen,u_char *buf)
428 printk (KERN_DEBUG "%s(from = 0x%.8x, len = %d)\n", __func__, (__u32)from, len);
435 if (from & (BUSWIDTH - 1))
437 int gap = BUSWIDTH - (from & (BUSWIDTH - 1));
440 *buf++ = read8 (from++);
448 *((__u32 *) buf) = read32 (from);
451 from += BUSWIDTH;
457 while (len--) *buf++ = read8 (from++);