rspi.h 304 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Renesas SPI driver
  4. *
  5. * Copyright (C) 2012 Renesas Solutions Corp.
  6. */
  7. #ifndef __LINUX_SPI_RENESAS_SPI_H__
  8. #define __LINUX_SPI_RENESAS_SPI_H__
  9. struct rspi_plat_data {
  10. unsigned int dma_tx_id;
  11. unsigned int dma_rx_id;
  12. u16 num_chipselect;
  13. };
  14. #endif