1/* 2 * Marvell XOR platform device data definition file. 3 */ 4 5#ifndef __DMA_MV_XOR_H 6#define __DMA_MV_XOR_H 7 8#include <linux/dmaengine.h> 9#include <linux/mbus.h> 10 11#define MV_XOR_NAME "mv_xor" 12 13struct mv_xor_channel_data { 14 dma_cap_mask_t cap_mask; 15}; 16 17struct mv_xor_platform_data { 18 struct mv_xor_channel_data *channels; 19}; 20 21#endif 22