spi-ep93xx.h 311 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_MACH_EP93XX_SPI_H
  3. #define __ASM_MACH_EP93XX_SPI_H
  4. struct spi_device;
  5. /**
  6. * struct ep93xx_spi_info - EP93xx specific SPI descriptor
  7. * @use_dma: use DMA for the transfers
  8. */
  9. struct ep93xx_spi_info {
  10. bool use_dma;
  11. };
  12. #endif /* __ASM_MACH_EP93XX_SPI_H */