Searched refs:sdio_rw_byte (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/system/dev/block/sdmmc/
H A Dsdio.c23 static zx_status_t sdio_rw_byte(sdmmc_device_t *dev, bool write, uint8_t fn_idx, uint32_t addr, function
55 return sdio_rw_byte(dev, txn->write, fn_idx, addr,
157 zx_status_t st = sdio_rw_byte(dev, false, 0, addr, 0, &byte1);
163 st = sdio_rw_byte(dev, false, 0, addr + 1, 0, &byte2);
176 zx_status_t st = sdio_rw_byte(dev, true, 0, addr, word & 0xff, NULL);
182 st = sdio_rw_byte(dev, true, 0, addr + 1, (word >> 8) & 0xff, NULL);

Completed in 20 milliseconds