Merge branch 'core/urgent' into core/locking
[pandora-kernel.git] / drivers / staging / comedi / comedi_internal.h
1 #ifndef _COMEDI_INTERNAL_H
2 #define _COMEDI_INTERNAL_H
3
4 #include <linux/types.h>
5
6 /*
7  * various internal comedi stuff
8  */
9 int do_rangeinfo_ioctl(struct comedi_device *dev,
10                        struct comedi_rangeinfo __user *arg);
11 struct comedi_device *comedi_alloc_board_minor(struct device *hardware_device);
12 void comedi_release_hardware_device(struct device *hardware_device);
13 int comedi_alloc_subdevice_minor(struct comedi_subdevice *s);
14 void comedi_free_subdevice_minor(struct comedi_subdevice *s);
15
16 int comedi_buf_alloc(struct comedi_device *dev, struct comedi_subdevice *s,
17                      unsigned long new_size);
18 void comedi_buf_reset(struct comedi_async *async);
19 bool comedi_buf_is_mmapped(struct comedi_async *async);
20 void comedi_buf_map_get(struct comedi_buf_map *bm);
21 int comedi_buf_map_put(struct comedi_buf_map *bm);
22 unsigned int comedi_buf_write_n_allocated(struct comedi_async *async);
23 void comedi_device_cancel_all(struct comedi_device *dev);
24
25 extern unsigned int comedi_default_buf_size_kb;
26 extern unsigned int comedi_default_buf_maxsize_kb;
27
28 /* drivers.c */
29
30 extern struct comedi_driver *comedi_drivers;
31 extern struct mutex comedi_drivers_list_lock;
32
33 int insn_inval(struct comedi_device *, struct comedi_subdevice *,
34                struct comedi_insn *, unsigned int *);
35
36 void comedi_device_detach(struct comedi_device *);
37 int comedi_device_attach(struct comedi_device *, struct comedi_devconfig *);
38
39 #ifdef CONFIG_PROC_FS
40
41 /* proc.c */
42
43 void comedi_proc_init(void);
44 void comedi_proc_cleanup(void);
45 #else
46 static inline void comedi_proc_init(void)
47 {
48 }
49 static inline void comedi_proc_cleanup(void)
50 {
51 }
52 #endif
53
54 #endif /* _COMEDI_INTERNAL_H */