Lines Matching refs:spi
25 struct spi_device *spi = to_spi_device(dev); in max7301_spi_write() local
28 return spi_write(spi, (const u8 *)&word, sizeof(word)); in max7301_spi_write()
37 struct spi_device *spi = to_spi_device(dev); in max7301_spi_read() local
40 ret = spi_write(spi, (const u8 *)&word, sizeof(word)); in max7301_spi_read()
47 ret = spi_read(spi, (u8 *)&word, sizeof(word)); in max7301_spi_read()
53 static int max7301_probe(struct spi_device *spi) in max7301_probe() argument
59 spi->bits_per_word = 16; in max7301_probe()
60 ret = spi_setup(spi); in max7301_probe()
64 ts = devm_kzalloc(&spi->dev, sizeof(struct max7301), GFP_KERNEL); in max7301_probe()
70 ts->dev = &spi->dev; in max7301_probe()
76 static int max7301_remove(struct spi_device *spi) in max7301_remove() argument
78 return __max730x_remove(&spi->dev); in max7301_remove()
85 MODULE_DEVICE_TABLE(spi, max7301_id);