asoc-ux500-msp.h 452 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2010
  3. *
  4. * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
  5. * License terms: GNU General Public License (GPL), version 2.
  6. */
  7. #ifndef __MSP_H
  8. #define __MSP_H
  9. #include <linux/platform_data/dma-ste-dma40.h>
  10. /* Platform data structure for a MSP I2S-device */
  11. struct msp_i2s_platform_data {
  12. int id;
  13. struct stedma40_chan_cfg *msp_i2s_dma_rx;
  14. struct stedma40_chan_cfg *msp_i2s_dma_tx;
  15. };
  16. #endif