Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Copyright (C) ST-Ericsson SA 2010
0004  *
0005  * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
0006  */
0007 
0008 #ifndef __MSP_H
0009 #define __MSP_H
0010 
0011 #include <linux/platform_data/dma-ste-dma40.h>
0012 
0013 /* Platform data structure for a MSP I2S-device */
0014 struct msp_i2s_platform_data {
0015     int id;
0016     struct stedma40_chan_cfg *msp_i2s_dma_rx;
0017     struct stedma40_chan_cfg *msp_i2s_dma_tx;
0018 };
0019 
0020 #endif