mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-25 18:15:11 +07:00
4cf709c9ab
In preparation for unconditionally passing the struct tasklet_struct pointer to all tasklet callbacks, switch to using the new tasklet_setup() and from_tasklet() to pass the tasklet pointer explicitly. Signed-off-by: Romain Perier <romain.perier@gmail.com> Signed-off-by: Allen Pais <allen.lkml@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
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 */
|