kcapi.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Kernel CAPI 2.0 Module
  3. *
  4. * Copyright 1999 by Carsten Paeth <calle@calle.de>
  5. * Copyright 2002 by Kai Germaschewski <kai@germaschewski.name>
  6. *
  7. * This software may be used and distributed according to the terms
  8. * of the GNU General Public License, incorporated herein by reference.
  9. *
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/spinlock.h>
  13. #include <linux/list.h>
  14. #include <linux/isdn/capilli.h>
  15. #ifdef KCAPI_DEBUG
  16. #define DBG(format, arg...) do { \
  17. printk(KERN_DEBUG "%s: " format "\n" , __func__ , ## arg); \
  18. } while (0)
  19. #else
  20. #define DBG(format, arg...) /* */
  21. #endif
  22. enum {
  23. CARD_DETECTED = 1,
  24. CARD_LOADING = 2,
  25. CARD_RUNNING = 3,
  26. };
  27. extern struct list_head capi_drivers;
  28. extern rwlock_t capi_drivers_list_lock;
  29. extern struct capi20_appl *capi_applications[CAPI_MAXAPPL];
  30. extern struct capi_ctr *capi_cards[CAPI_MAXCONTR];
  31. #ifdef CONFIG_PROC_FS
  32. void kcapi_proc_init(void);
  33. void kcapi_proc_exit(void);
  34. #else
  35. static inline void kcapi_proc_init(void) { };
  36. static inline void kcapi_proc_exit(void) { };
  37. #endif