GNU Linux-libre 4.14.251-gnu1
[releases.git] / drivers / staging / comedi / comedi_pcmcia.h
1 /*
2  * comedi_pcmcia.h
3  * header file for Comedi PCMCIA drivers
4  *
5  * COMEDI - Linux Control and Measurement Device Interface
6  * Copyright (C) 1997-2000 David A. Schleef <ds@schleef.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  */
18
19 #ifndef _COMEDI_PCMCIA_H
20 #define _COMEDI_PCMCIA_H
21
22 #include <pcmcia/cistpl.h>
23 #include <pcmcia/ds.h>
24
25 #include "comedidev.h"
26
27 struct pcmcia_device *comedi_to_pcmcia_dev(struct comedi_device *dev);
28
29 int comedi_pcmcia_enable(struct comedi_device *dev,
30                          int (*conf_check)(struct pcmcia_device *p_dev,
31                                            void *priv_data));
32 void comedi_pcmcia_disable(struct comedi_device *dev);
33
34 int comedi_pcmcia_auto_config(struct pcmcia_device *link,
35                               struct comedi_driver *driver);
36 void comedi_pcmcia_auto_unconfig(struct pcmcia_device *link);
37
38 int comedi_pcmcia_driver_register(struct comedi_driver *comedi_driver,
39                                   struct pcmcia_driver *pcmcia_driver);
40 void comedi_pcmcia_driver_unregister(struct comedi_driver *comedi_driver,
41                                      struct pcmcia_driver *pcmcia_driver);
42
43 /**
44  * module_comedi_pcmcia_driver() - Helper macro for registering a comedi
45  * PCMCIA driver
46  * @__comedi_driver: comedi_driver struct
47  * @__pcmcia_driver: pcmcia_driver struct
48  *
49  * Helper macro for comedi PCMCIA drivers which do not do anything special
50  * in module init/exit. This eliminates a lot of boilerplate. Each
51  * module may only use this macro once, and calling it replaces
52  * module_init() and module_exit()
53  */
54 #define module_comedi_pcmcia_driver(__comedi_driver, __pcmcia_driver) \
55         module_driver(__comedi_driver, comedi_pcmcia_driver_register, \
56                         comedi_pcmcia_driver_unregister, &(__pcmcia_driver))
57
58 #endif /* _COMEDI_PCMCIA_H */