Lines Matching refs:from
323 "Failed to upload from 0x%x to " "0x%x size 0x%x\n",
342 "Failed to download from 0x%x to 0x%x size 0x%x\n",
425 static blk_status_t ps3vram_read(struct ps3_system_bus_device *dev, loff_t from,
431 dev_dbg(&dev->core, "%s: from=0x%08x len=0x%zx\n", __func__,
432 (unsigned int)from, len);
434 if (from >= priv->size)
437 if (len > priv->size - from)
438 len = priv->size - from;
440 /* Copy from vram to buf */
446 offset = (unsigned int) (from & (priv->cache.page_size - 1));
449 entry = ps3vram_cache_match(dev, from);
452 dev_dbg(&dev->core, "%s: from=%08x cached=%08x offset=%08x "
454 (unsigned int)from, cached, offset, avail, count);
462 from += avail;
481 /* Copy from buf to vram */