root/include/linux/platform_data/mmp_dma.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0-only */
   2 /*
   3  *  MMP Platform DMA Management
   4  *
   5  *  Copyright (c) 2011 Marvell Semiconductors Inc.
   6  */
   7 
   8 #ifndef MMP_DMA_H
   9 #define MMP_DMA_H
  10 
  11 struct dma_slave_map;
  12 
  13 struct mmp_dma_platdata {
  14         int dma_channels;
  15         int nb_requestors;
  16         int slave_map_cnt;
  17         const struct dma_slave_map *slave_map;
  18 };
  19 
  20 #endif /* MMP_DMA_H */

/* [<][>][^][v][top][bottom][index][help] */