Lines Matching refs:slave
25 struct spi_slave *slave = dev_get_parent_priv(dev->dev); in cros_ec_spi_packet() local
31 if (spi_claim_bus(slave)) { in cros_ec_spi_packet()
36 rv = spi_xfer(slave, out_bytes * 8, dev->dout, NULL, SPI_XFER_BEGIN); in cros_ec_spi_packet()
41 rv = spi_xfer(slave, 8, NULL, &byte, 0); in cros_ec_spi_packet()
52 rv = spi_xfer(slave, in_bytes * 8, NULL, dev->din, 0); in cros_ec_spi_packet()
54 spi_xfer(slave, 0, NULL, NULL, SPI_XFER_END); in cros_ec_spi_packet()
55 spi_release_bus(slave); in cros_ec_spi_packet()
85 struct spi_slave *slave = dev_get_parent_priv(dev->dev); in cros_ec_spi_command() local
118 if (spi_claim_bus(slave)) { in cros_ec_spi_command()
139 rv = spi_xfer(slave, max(len, in_bytes) * 8, out, p, in cros_ec_spi_command()
142 spi_release_bus(slave); in cros_ec_spi_command()