| * Copyright 1999 by Carsten Paeth <calle@calle.de> |
| * Copyright 2002 by Kai Germaschewski <kai@germaschewski.name> |
| * This software may be used and distributed according to the terms |
| * of the GNU General Public License, incorporated herein by reference. |
| #include <linux/kernel.h> |
| #include <linux/spinlock.h> |
| #include <linux/isdn/capilli.h> |
| #define DBG(format, arg...) do { \ |
| printk(KERN_DEBUG "%s: " format "\n" , __func__ , ## arg); \ |
| #define DBG(format, arg...) /* */ |
| extern struct list_head capi_drivers; |
| extern struct mutex capi_drivers_lock; |
| extern struct capi_ctr *capi_controller[CAPI_MAXCONTR]; |
| extern struct mutex capi_controller_lock; |
| extern struct capi20_appl *capi_applications[CAPI_MAXAPPL]; |
| void kcapi_proc_init(void); |
| void kcapi_proc_exit(void); |
| static inline void kcapi_proc_init(void) { }; |
| static inline void kcapi_proc_exit(void) { }; |