spi.h 226 B

1234567891011121314
  1. #ifndef __ASM_SPI_H__
  2. #define __ASM_SPI_H__
  3. struct sh_spi_info;
  4. struct sh_spi_info {
  5. int bus_num;
  6. int num_chipselect;
  7. void (*chip_select)(struct sh_spi_info *spi, int cs, int state);
  8. };
  9. #endif /* __ASM_SPI_H__ */