comedi_pcmcia.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. #ifndef _COMEDI_PCMCIA_H
  19. #define _COMEDI_PCMCIA_H
  20. #include <pcmcia/cistpl.h>
  21. #include <pcmcia/ds.h>
  22. #include "comedidev.h"
  23. struct pcmcia_device *comedi_to_pcmcia_dev(struct comedi_device *);
  24. int comedi_pcmcia_enable(struct comedi_device *,
  25. int (*conf_check)(struct pcmcia_device *, void *));
  26. void comedi_pcmcia_disable(struct comedi_device *);
  27. int comedi_pcmcia_auto_config(struct pcmcia_device *, struct comedi_driver *);
  28. void comedi_pcmcia_auto_unconfig(struct pcmcia_device *);
  29. int comedi_pcmcia_driver_register(struct comedi_driver *,
  30. struct pcmcia_driver *);
  31. void comedi_pcmcia_driver_unregister(struct comedi_driver *,
  32. struct pcmcia_driver *);
  33. /**
  34. * module_comedi_pcmcia_driver() - Helper macro for registering a comedi PCMCIA driver
  35. * @__comedi_driver: comedi_driver struct
  36. * @__pcmcia_driver: pcmcia_driver struct
  37. *
  38. * Helper macro for comedi PCMCIA drivers which do not do anything special
  39. * in module init/exit. This eliminates a lot of boilerplate. Each
  40. * module may only use this macro once, and calling it replaces
  41. * module_init() and module_exit()
  42. */
  43. #define module_comedi_pcmcia_driver(__comedi_driver, __pcmcia_driver) \
  44. module_driver(__comedi_driver, comedi_pcmcia_driver_register, \
  45. comedi_pcmcia_driver_unregister, &(__pcmcia_driver))
  46. #endif /* _COMEDI_PCMCIA_H */