mantis_dma.h 490 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. Mantis PCI bridge driver
  4. Copyright (C) Manu Abraham ([email protected])
  5. */
  6. #ifndef __MANTIS_DMA_H
  7. #define __MANTIS_DMA_H
  8. extern int mantis_dma_init(struct mantis_pci *mantis);
  9. extern int mantis_dma_exit(struct mantis_pci *mantis);
  10. extern void mantis_dma_start(struct mantis_pci *mantis);
  11. extern void mantis_dma_stop(struct mantis_pci *mantis);
  12. extern void mantis_dma_xfer(struct tasklet_struct *t);
  13. #endif /* __MANTIS_DMA_H */