Lines Matching defs:bytes
247 /* Reads max INTEL_SPI_FIFO_SZ bytes from the device fifo */
250 size_t bytes;
257 bytes = min_t(size_t, size, 4);
258 memcpy_fromio(buf, ispi->base + FDATA(i), bytes);
259 size -= bytes;
260 buf += bytes;
267 /* Writes max INTEL_SPI_FIFO_SZ bytes to the device fifo */
271 size_t bytes;
278 bytes = min_t(size_t, size, 4);
279 memcpy_toio(ispi->base + FDATA(i), buf, bytes);
280 size -= bytes;
281 buf += bytes;