19 lines
490 B
C
19 lines
490 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
Mantis PCI bridge driver
|
|
|
|
Copyright (C) Manu Abraham (abraham.manu@gmail.com)
|
|
|
|
*/
|
|
|
|
#ifndef __MANTIS_DMA_H
|
|
#define __MANTIS_DMA_H
|
|
|
|
extern int mantis_dma_init(struct mantis_pci *mantis);
|
|
extern int mantis_dma_exit(struct mantis_pci *mantis);
|
|
extern void mantis_dma_start(struct mantis_pci *mantis);
|
|
extern void mantis_dma_stop(struct mantis_pci *mantis);
|
|
extern void mantis_dma_xfer(struct tasklet_struct *t);
|
|
|
|
#endif /* __MANTIS_DMA_H */
|