hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * ni_labpc ISA DMA support.
 */
 
#ifndef _NI_LABPC_ISADMA_H
#define _NI_LABPC_ISADMA_H
 
#if IS_ENABLED(CONFIG_COMEDI_NI_LABPC_ISADMA)
 
void labpc_init_dma_chan(struct comedi_device *dev, unsigned int dma_chan);
void labpc_free_dma_chan(struct comedi_device *dev);
void labpc_setup_dma(struct comedi_device *dev, struct comedi_subdevice *s);
void labpc_drain_dma(struct comedi_device *dev);
void labpc_handle_dma_status(struct comedi_device *dev);
 
#else
 
static inline void labpc_init_dma_chan(struct comedi_device *dev,
                      unsigned int dma_chan)
{
}
 
static inline void labpc_free_dma_chan(struct comedi_device *dev)
{
}
 
static inline void labpc_setup_dma(struct comedi_device *dev,
                  struct comedi_subdevice *s)
{
}
 
static inline void labpc_drain_dma(struct comedi_device *dev)
{
}
 
static inline void labpc_handle_dma_status(struct comedi_device *dev)
{
}
 
#endif
 
#endif /* _NI_LABPC_ISADMA_H */