Lines Matching defs:offset
76 * on 4 Meg flash the second byte is actually at offset 2...
129 printk(KERN_DEBUG "flash_read: flash_read: offset=0x%llx, "
153 printk("flash_write: offset=0x%lX, buffer=0x%p, count=0x%X.\n",
219 printk(KERN_DEBUG "flash_write: writing offset %lX, "
265 * The memory devices use the full 32/64 bits of the offset, and so we cannot
272 static loff_t flash_llseek(struct file *file, loff_t offset, int orig)
278 printk(KERN_DEBUG "flash_llseek: offset=0x%X, orig=0x%X.\n",
279 (unsigned int) offset, orig);
281 ret = no_seek_end_llseek_size(file, offset, orig, gbFlashSize);
300 * reset footbridge to the correct offset 0 (...0..3)
403 unsigned int offset;
412 offset = p & 0xFFFF;
414 if (offset + count > 0x10000)
415 count = 0x10000 - offset;
422 for (offset = 0; offset < count; offset++, pWritePtr++) {
425 if (__get_user(c2, buf + offset))
440 * program footbridge to the correct offset...0..3
534 for (offset = 0; offset < count; offset++) {