Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * arch/arm/plat-orion/include/plat/mv_xor.h
3 *
4 * Marvell XOR platform device data definition file.
5 */
6
7#ifndef __PLAT_MV_XOR_H
8#define __PLAT_MV_XOR_H
9
10#include <linux/dmaengine.h>
11#include <linux/mbus.h>
12
13#define MV_XOR_NAME "mv_xor"
14
15struct mv_xor_channel_data {
16 dma_cap_mask_t cap_mask;
17};
18
19struct mv_xor_platform_data {
20 struct mv_xor_channel_data *channels;
21};
22
23#endif