lpc32xx_mlc.h 385 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Platform data for LPC32xx SoC MLC NAND controller
  4. *
  5. * Copyright © 2012 Roland Stigge
  6. */
  7. #ifndef __LINUX_MTD_LPC32XX_MLC_H
  8. #define __LINUX_MTD_LPC32XX_MLC_H
  9. #include <linux/dmaengine.h>
  10. struct lpc32xx_mlc_platform_data {
  11. bool (*dma_filter)(struct dma_chan *chan, void *filter_param);
  12. };
  13. #endif /* __LINUX_MTD_LPC32XX_MLC_H */