Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.13 18 lines 415 B view raw
1#ifndef __ASM_MACH_EP93XX_SPI_H 2#define __ASM_MACH_EP93XX_SPI_H 3 4struct 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 */ 12struct ep93xx_spi_info { 13 int *chipselect; 14 int num_chipselect; 15 bool use_dma; 16}; 17 18#endif /* __ASM_MACH_EP93XX_SPI_H */