/*1* dma.h --2*3* This program is free software; you can redistribute it and/or modify it4* under the terms of the GNU General Public License as published by the5* Free Software Foundation; either version 2 of the License, or (at your6* option) any later version.7*8* ALSA PCM interface for the Samsung S3C24xx CPU9*/1011#ifndef _S3C_AUDIO_H12#define _S3C_AUDIO_H1314struct s3c_dma_params {15struct s3c2410_dma_client *client; /* stream identifier */16int channel; /* Channel ID */17dma_addr_t dma_addr;18int dma_size; /* Size of the DMA transfer */19};2021#endif222324