18 lines
339 B
C
18 lines
339 B
C
|
#ifndef __MACH_ATMEL_MCI_H
|
||
|
#define __MACH_ATMEL_MCI_H
|
||
|
|
||
|
#include <linux/dw_dmac.h>
|
||
|
|
||
|
/**
|
||
|
* struct mci_dma_data - DMA data for MCI interface
|
||
|
*/
|
||
|
struct mci_dma_data {
|
||
|
struct dw_dma_slave sdata;
|
||
|
};
|
||
|
|
||
|
/* accessor macros */
|
||
|
#define slave_data_ptr(s) (&(s)->sdata)
|
||
|
#define find_slave_dev(s) ((s)->sdata.dma_dev)
|
||
|
|
||
|
#endif /* __MACH_ATMEL_MCI_H */
|