Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Renesas SPI driver
0004  *
0005  * Copyright (C) 2012  Renesas Solutions Corp.
0006  */
0007 
0008 #ifndef __LINUX_SPI_RENESAS_SPI_H__
0009 #define __LINUX_SPI_RENESAS_SPI_H__
0010 
0011 struct rspi_plat_data {
0012     unsigned int dma_tx_id;
0013     unsigned int dma_rx_id;
0014 
0015     u16 num_chipselect;
0016 };
0017 
0018 #endif