]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - include/linux/platform_data/spi-ep93xx.h
Merge tag 'v4.11-rc1' into docs-next
[karo-tx-linux.git] / include / linux / platform_data / spi-ep93xx.h
1 #ifndef __ASM_MACH_EP93XX_SPI_H
2 #define __ASM_MACH_EP93XX_SPI_H
3
4 struct spi_device;
5
6 /**
7  * struct ep93xx_spi_info - EP93xx specific SPI descriptor
8  * @chipselect: array of gpio numbers to use as chip selects
9  * @num_chipselect: ARRAY_SIZE(chipselect)
10  * @use_dma: use DMA for the transfers
11  */
12 struct ep93xx_spi_info {
13         int     *chipselect;
14         int     num_chipselect;
15         bool    use_dma;
16 };
17
18 #endif /* __ASM_MACH_EP93XX_SPI_H */