Home
last modified time | relevance | path

Searched refs:RT5514_SPI_BUF_LEN (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.1/sound/soc/codecs/
Drt5514-spi.c331 if (offset + RT5514_SPI_BUF_LEN <= len) in rt5514_spi_burst_read()
332 end = RT5514_SPI_BUF_LEN; in rt5514_spi_burst_read()
334 end = len % RT5514_SPI_BUF_LEN; in rt5514_spi_burst_read()
362 offset += RT5514_SPI_BUF_LEN; in rt5514_spi_burst_read()
404 write_buf = kmalloc(RT5514_SPI_BUF_LEN + 6, GFP_KERNEL); in rt5514_spi_burst_write()
410 if (offset + RT5514_SPI_BUF_LEN <= len) in rt5514_spi_burst_write()
411 end = RT5514_SPI_BUF_LEN; in rt5514_spi_burst_write()
413 end = len % RT5514_SPI_BUF_LEN; in rt5514_spi_burst_write()
436 offset += RT5514_SPI_BUF_LEN; in rt5514_spi_burst_write()
Drt5514-spi.h15 #define RT5514_SPI_BUF_LEN 240 macro