mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-12 15:44:01 +08:00
3d598f47e8
There is a common storage for platform data related structures and definitions inside kernel source tree. The patch moves file from include/linux to include/linux/platform_data and renames it acoordingly. The users are also updated. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> [For the arch/avr32/.* and .*sound/atmel.*] Acked-by: Hans-Christian Egtvedt <egtvedt@samfundet.no> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
18 lines
352 B
C
18 lines
352 B
C
#ifndef __MACH_ATMEL_MCI_H
|
|
#define __MACH_ATMEL_MCI_H
|
|
|
|
#include <linux/platform_data/dma-dw.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 */
|