Lines Matching refs:from
322 "Failed to upload from 0x%x to " "0x%x size 0x%x\n",
341 "Failed to download from 0x%x to 0x%x size 0x%x\n",
424 static blk_status_t ps3vram_read(struct ps3_system_bus_device *dev, loff_t from,
430 dev_dbg(&dev->core, "%s: from=0x%08x len=0x%zx\n", __func__,
431 (unsigned int)from, len);
433 if (from >= priv->size)
436 if (len > priv->size - from)
437 len = priv->size - from;
439 /* Copy from vram to buf */
445 offset = (unsigned int) (from & (priv->cache.page_size - 1));
448 entry = ps3vram_cache_match(dev, from);
451 dev_dbg(&dev->core, "%s: from=%08x cached=%08x offset=%08x "
453 (unsigned int)from, cached, offset, avail, count);
461 from += avail;
480 /* Copy from buf to vram */