Lines Matching refs:spi
23 struct spi_device *spi; member
45 ret = spi_write(st->spi, st->data, ARRAY_SIZE(st->data)); in ad8366_write()
136 static int ad8366_probe(struct spi_device *spi) in ad8366_probe() argument
142 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st)); in ad8366_probe()
148 st->reg = devm_regulator_get(&spi->dev, "vcc"); in ad8366_probe()
155 spi_set_drvdata(spi, indio_dev); in ad8366_probe()
156 st->spi = spi; in ad8366_probe()
158 indio_dev->dev.parent = &spi->dev; in ad8366_probe()
159 indio_dev->name = spi_get_device_id(spi)->name; in ad8366_probe()
180 static int ad8366_remove(struct spi_device *spi) in ad8366_remove() argument
182 struct iio_dev *indio_dev = spi_get_drvdata(spi); in ad8366_remove()
198 MODULE_DEVICE_TABLE(spi, ad8366_id);