]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - include/linux/platform_data/spi-ep93xx.h
Merge remote-tracking branches 'spi/topic/rockchip', 'spi/topic/rspi', 'spi/topic...
[mirror_ubuntu-hirsute-kernel.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 */