1234567891011121314151617181920 |
- #ifndef __RT5677_SPI_H__
- #define __RT5677_SPI_H__
- 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
|