2018-12-28 16:31:53 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
2010-01-23 02:09:03 +08:00
|
|
|
* platform header for the SIU ASoC driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009-2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ASM_SIU_H
|
|
|
|
#define ASM_SIU_H
|
|
|
|
|
|
|
|
struct device;
|
|
|
|
|
|
|
|
struct siu_platform {
|
2010-03-19 12:46:38 +08:00
|
|
|
unsigned int dma_slave_tx_a;
|
|
|
|
unsigned int dma_slave_rx_a;
|
|
|
|
unsigned int dma_slave_tx_b;
|
|
|
|
unsigned int dma_slave_rx_b;
|
2010-01-23 02:09:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* ASM_SIU_H */
|