blob: 7d0db3bb680fdd73c5077b7fc449abd9bd900385 [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__
25#ifndef EXPORT_SYMTAB
26#define EXPORT_SYMTAB
27#endif
28
29#include "comedidev.h"
30
31/* for drivers */
32EXPORT_SYMBOL(comedi_driver_register);
33EXPORT_SYMBOL(comedi_driver_unregister);
34//EXPORT_SYMBOL(comedi_bufcheck);
35//EXPORT_SYMBOL(comedi_done);
36//EXPORT_SYMBOL(comedi_error_done);
37EXPORT_SYMBOL(comedi_error);
38//EXPORT_SYMBOL(comedi_eobuf);
39//EXPORT_SYMBOL(comedi_eos);
40EXPORT_SYMBOL(comedi_event);
41EXPORT_SYMBOL(comedi_get_subdevice_runflags);
42EXPORT_SYMBOL(comedi_set_subdevice_runflags);
43EXPORT_SYMBOL(range_bipolar10);
44EXPORT_SYMBOL(range_bipolar5);
45EXPORT_SYMBOL(range_bipolar2_5);
46EXPORT_SYMBOL(range_unipolar10);
47EXPORT_SYMBOL(range_unipolar5);
48EXPORT_SYMBOL(range_unknown);
49#ifdef CONFIG_COMEDI_RT
50EXPORT_SYMBOL(comedi_free_irq);
51EXPORT_SYMBOL(comedi_request_irq);
52EXPORT_SYMBOL(comedi_switch_to_rt);
53EXPORT_SYMBOL(comedi_switch_to_non_rt);
54EXPORT_SYMBOL(rt_pend_call);
55#endif
56#ifdef CONFIG_COMEDI_DEBUG
57EXPORT_SYMBOL(comedi_debug);
58#endif
59EXPORT_SYMBOL_GPL(comedi_alloc_board_minor);
60EXPORT_SYMBOL_GPL(comedi_free_board_minor);
61EXPORT_SYMBOL_GPL(comedi_pci_auto_config);
62EXPORT_SYMBOL_GPL(comedi_pci_auto_unconfig);
Bernd Porrc28264d2008-12-08 23:30:13 +000063EXPORT_SYMBOL_GPL(comedi_usb_auto_config);
64EXPORT_SYMBOL_GPL(comedi_usb_auto_unconfig);
David Schleefed9eccb2008-11-04 20:29:31 -080065
66/* for kcomedilib */
67EXPORT_SYMBOL(check_chanlist);
68EXPORT_SYMBOL_GPL(comedi_get_device_file_info);
69
70EXPORT_SYMBOL(comedi_buf_put);
71EXPORT_SYMBOL(comedi_buf_get);
72EXPORT_SYMBOL(comedi_buf_read_n_available);
73EXPORT_SYMBOL(comedi_buf_write_free);
74EXPORT_SYMBOL(comedi_buf_write_alloc);
75EXPORT_SYMBOL(comedi_buf_read_free);
76EXPORT_SYMBOL(comedi_buf_read_alloc);
77EXPORT_SYMBOL(comedi_buf_memcpy_to);
78EXPORT_SYMBOL(comedi_buf_memcpy_from);
79EXPORT_SYMBOL(comedi_reset_async_buf);