diff options
Diffstat (limited to 'kernel/sound/soc/codecs/rt5677-spi.h')
-rw-r--r-- | kernel/sound/soc/codecs/rt5677-spi.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/kernel/sound/soc/codecs/rt5677-spi.h b/kernel/sound/soc/codecs/rt5677-spi.h index ec41b2b3b..662db16cf 100644 --- a/kernel/sound/soc/codecs/rt5677-spi.h +++ b/kernel/sound/soc/codecs/rt5677-spi.h @@ -12,10 +12,8 @@ #ifndef __RT5677_SPI_H__ #define __RT5677_SPI_H__ -#define RT5677_SPI_BUF_LEN 240 -#define RT5677_SPI_CMD_BURST_WRITE 0x05 - -int rt5677_spi_write(u8 *txbuf, size_t len); -int rt5677_spi_burst_write(u32 addr, const struct firmware *fw); +int rt5677_spi_read(u32 addr, void *rxbuf, size_t len); +int rt5677_spi_write(u32 addr, const void *txbuf, size_t len); +int rt5677_spi_write_firmware(u32 addr, const struct firmware *fw); #endif /* __RT5677_SPI_H__ */ |