2 * Kernel CAPI 2.0 Module
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
13 #include <linux/kernel.h>
14 #include <linux/spinlock.h>
15 #include <linux/list.h>
16 #include <linux/isdn/capilli.h>
19 #define DBG(format, arg...) do { \
20 printk(KERN_DEBUG "%s: " format "\n" , __func__ , ## arg); \
23 #define DBG(format, arg...) /* */
27 CAPI_CTR_DETACHED = 0,
28 CAPI_CTR_DETECTED = 1,
33 extern struct list_head capi_drivers;
34 extern struct mutex capi_drivers_lock;
36 extern struct capi_ctr *capi_controller[CAPI_MAXCONTR];
37 extern struct mutex capi_controller_lock;
39 extern struct capi20_appl *capi_applications[CAPI_MAXAPPL];
43 void kcapi_proc_init(void);
44 void kcapi_proc_exit(void);
48 static inline void kcapi_proc_init(void) { };
49 static inline void kcapi_proc_exit(void) { };