oleavr-rgl-a500-mini-linux-.../arch/sh/include/asm/spi.h
Ole André Vadla Ravnås 169c65d57e Initial commit
2022-05-07 01:01:45 +02:00

13 lines
226 B
C

#ifndef __ASM_SPI_H__
#define __ASM_SPI_H__
struct sh_spi_info;
struct sh_spi_info {
int bus_num;
int num_chipselect;
void (*chip_select)(struct sh_spi_info *spi, int cs, int state);
};
#endif /* __ASM_SPI_H__ */