Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: c9eaa447e77efe77b7fa4c953bd62de8297fd6c5 authored by Linus Torvalds on 13 April 2014, 21:18:35 UTC
Linux 3.15-rc1
Tip revision: c9eaa44
dma-mv_xor.h
/*
 * Marvell XOR platform device data definition file.
 */

#ifndef __DMA_MV_XOR_H
#define __DMA_MV_XOR_H

#include <linux/dmaengine.h>
#include <linux/mbus.h>

#define MV_XOR_NAME	"mv_xor"

struct mv_xor_channel_data {
	dma_cap_mask_t			cap_mask;
};

struct mv_xor_platform_data {
	struct mv_xor_channel_data    *channels;
};

#endif
back to top