removed symbols that were moved to kcomedilib
[comedi.git] / comedi / comedi_ksyms.c
1 /*
2     module/exp_ioctl.c
3     exported comedi functions
4
5     COMEDI - Linux Control and Measurement Device Interface
6     Copyright (C) 1997-8 David A. Schleef <ds@stm.lbl.gov>
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     You should have received a copy of the GNU General Public License
19     along with this program; if not, write to the Free Software
20     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22 */
23
24
25 #include <comedi_module.h>
26
27 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/sched.h>
30
31
32
33 #ifdef LINUX_V20
34
35 struct symbol_table comedi_syms = {
36 #include <linux/symtab_begin.h>
37         X(comedi_trig_ioctl),
38         X(__comedi_trig_ioctl),
39         X(comedi_lock_ioctl),
40         X(comedi_unlock_ioctl),
41         X(comedi_cancel_ioctl),
42         X(comedi_register_callback),
43 #include <linux/symtab_end.h>
44 };
45
46 #endif
47
48 #ifdef LINUX_V22
49
50 /* for drivers */
51 EXPORT_SYMBOL(comedi_driver_register);
52 EXPORT_SYMBOL(comedi_driver_unregister);
53 EXPORT_SYMBOL(comedi_bufcheck);
54 EXPORT_SYMBOL(comedi_done);
55 EXPORT_SYMBOL(comedi_error);
56 EXPORT_SYMBOL(do_pack);
57 EXPORT_SYMBOL(di_unpack);
58 EXPORT_SYMBOL(comedi_eobuf);
59 EXPORT_SYMBOL(comedi_eos);
60 EXPORT_SYMBOL(range_bipolar10);
61 EXPORT_SYMBOL(range_bipolar5);
62 EXPORT_SYMBOL(range_bipolar2_5);
63 EXPORT_SYMBOL(range_unipolar10);
64 EXPORT_SYMBOL(range_unipolar5);
65 EXPORT_SYMBOL(range_unknown);
66 #ifdef CONFIG_COMEDI_RT
67 EXPORT_SYMBOL(comedi_change_irq_flags);
68 EXPORT_SYMBOL(comedi_free_irq);
69 EXPORT_SYMBOL(comedi_request_irq);
70 #endif
71
72 /* for kcomedilib */
73 EXPORT_SYMBOL(comedi_devices);
74 EXPORT_SYMBOL(rtcomedi_lock_semaphore);
75 EXPORT_SYMBOL(check_chanlist);
76
77 #endif
78
79
80