remarkable-linux/include/linux/platform_data/dma-mv_xor.h
Sachin Kamat 6fb9063ca2 dma: mv_xor: Cleanup in dma-mv_xor.h header
Commit c02cecb92e ("ARM: orion: move platform_data definitions")
moved the file to the current location but forgot to remove the pointer
to its previous location. Clean it up. While at it also change the header
file protection macros appropriately.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
2014-01-13 13:30:31 +05:30

22 lines
336 B
C

/*
* 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