dma-mv_xor.h 336 B

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