blob: 87803e69a149e99c1f3c30f4e078174dc80b7002 [file] [log] [blame]
David Schleefed9eccb2008-11-04 20:29:31 -08001/*
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@schleef.org>
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#define __NO_VERSION__
David Schleefed9eccb2008-11-04 20:29:31 -080025
26#include "comedidev.h"
27
28/* for drivers */
29EXPORT_SYMBOL(comedi_driver_register);
30EXPORT_SYMBOL(comedi_driver_unregister);
Bill Pembertonb6c77752009-03-16 22:03:24 -040031/* EXPORT_SYMBOL(comedi_bufcheck); */
32/* EXPORT_SYMBOL(comedi_done); */
33/* EXPORT_SYMBOL(comedi_error_done); */
David Schleefed9eccb2008-11-04 20:29:31 -080034EXPORT_SYMBOL(comedi_error);
Bill Pembertonb6c77752009-03-16 22:03:24 -040035/* EXPORT_SYMBOL(comedi_eobuf); */
36/* EXPORT_SYMBOL(comedi_eos); */
David Schleefed9eccb2008-11-04 20:29:31 -080037EXPORT_SYMBOL(comedi_event);
38EXPORT_SYMBOL(comedi_get_subdevice_runflags);
39EXPORT_SYMBOL(comedi_set_subdevice_runflags);
40EXPORT_SYMBOL(range_bipolar10);
41EXPORT_SYMBOL(range_bipolar5);
42EXPORT_SYMBOL(range_bipolar2_5);
43EXPORT_SYMBOL(range_unipolar10);
44EXPORT_SYMBOL(range_unipolar5);
45EXPORT_SYMBOL(range_unknown);
David Schleefed9eccb2008-11-04 20:29:31 -080046#ifdef CONFIG_COMEDI_DEBUG
47EXPORT_SYMBOL(comedi_debug);
48#endif
49EXPORT_SYMBOL_GPL(comedi_alloc_board_minor);
50EXPORT_SYMBOL_GPL(comedi_free_board_minor);
51EXPORT_SYMBOL_GPL(comedi_pci_auto_config);
52EXPORT_SYMBOL_GPL(comedi_pci_auto_unconfig);
Bernd Porrc28264d2008-12-08 23:30:13 +000053EXPORT_SYMBOL_GPL(comedi_usb_auto_config);
54EXPORT_SYMBOL_GPL(comedi_usb_auto_unconfig);
David Schleefed9eccb2008-11-04 20:29:31 -080055
56/* for kcomedilib */
57EXPORT_SYMBOL(check_chanlist);
58EXPORT_SYMBOL_GPL(comedi_get_device_file_info);
59
60EXPORT_SYMBOL(comedi_buf_put);
61EXPORT_SYMBOL(comedi_buf_get);
62EXPORT_SYMBOL(comedi_buf_read_n_available);
63EXPORT_SYMBOL(comedi_buf_write_free);
64EXPORT_SYMBOL(comedi_buf_write_alloc);
65EXPORT_SYMBOL(comedi_buf_read_free);
66EXPORT_SYMBOL(comedi_buf_read_alloc);
67EXPORT_SYMBOL(comedi_buf_memcpy_to);
68EXPORT_SYMBOL(comedi_buf_memcpy_from);
69EXPORT_SYMBOL(comedi_reset_async_buf);