Lines Matching refs:slave
27 struct spi_slave *slave = dev_get_parent_priv(dev->dev); in cros_ec_spi_packet() local
33 if (spi_claim_bus(slave)) { in cros_ec_spi_packet()
38 rv = spi_xfer(slave, out_bytes * 8, dev->dout, NULL, SPI_XFER_BEGIN); in cros_ec_spi_packet()
43 rv = spi_xfer(slave, 8, NULL, &byte, 0); in cros_ec_spi_packet()
54 rv = spi_xfer(slave, in_bytes * 8, NULL, dev->din, 0); in cros_ec_spi_packet()
56 spi_xfer(slave, 0, NULL, NULL, SPI_XFER_END); in cros_ec_spi_packet()
57 spi_release_bus(slave); in cros_ec_spi_packet()
87 struct spi_slave *slave = dev_get_parent_priv(dev->dev); in cros_ec_spi_command() local
120 if (spi_claim_bus(slave)) { in cros_ec_spi_command()
141 rv = spi_xfer(slave, max(len, in_bytes) * 8, out, p, in cros_ec_spi_command()
144 spi_release_bus(slave); in cros_ec_spi_command()