~ubuntu-branches/debian/wheezy/linux-2.6/wheezy

« back to all changes in this revision

Viewing changes to drivers/staging/comedi/comedi_ksyms.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings, Ben Hutchings, Aurelien Jarno, Martin Michlmayr
  • Date: 2011-04-06 13:53:30 UTC
  • mfrom: (43.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110406135330-wjufxhd0tvn3zx4z
Tags: 2.6.38-3
[ Ben Hutchings ]
* [ppc64] Add to linux-tools package architectures (Closes: #620124)
* [amd64] Save cr4 to mmu_cr4_features at boot time (Closes: #620284)
* appletalk: Fix bugs introduced when removing use of BKL
* ALSA: Fix yet another race in disconnection
* cciss: Fix lost command issue
* ath9k: Fix kernel panic in AR2427
* ses: Avoid kernel panic when lun 0 is not mapped
* PCI/ACPI: Report ASPM support to BIOS if not disabled from command line

[ Aurelien Jarno ]
* rtlwifi: fix build when PCI is not enabled.

[ Martin Michlmayr ]
* rtlwifi: Eliminate udelay calls with too large values (Closes: #620204)

Show diffs side-by-side

added added

removed removed

Lines of Context:
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@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
 
 
26
 
#include "comedidev.h"
27
 
 
28
 
/* for drivers */
29
 
EXPORT_SYMBOL(comedi_driver_register);
30
 
EXPORT_SYMBOL(comedi_driver_unregister);
31
 
/* EXPORT_SYMBOL(comedi_bufcheck); */
32
 
/* EXPORT_SYMBOL(comedi_done); */
33
 
/* EXPORT_SYMBOL(comedi_error_done); */
34
 
EXPORT_SYMBOL(comedi_error);
35
 
/* EXPORT_SYMBOL(comedi_eobuf); */
36
 
/* EXPORT_SYMBOL(comedi_eos); */
37
 
EXPORT_SYMBOL(comedi_event);
38
 
EXPORT_SYMBOL(comedi_get_subdevice_runflags);
39
 
EXPORT_SYMBOL(comedi_set_subdevice_runflags);
40
 
EXPORT_SYMBOL(range_bipolar10);
41
 
EXPORT_SYMBOL(range_bipolar5);
42
 
EXPORT_SYMBOL(range_bipolar2_5);
43
 
EXPORT_SYMBOL(range_unipolar10);
44
 
EXPORT_SYMBOL(range_unipolar5);
45
 
EXPORT_SYMBOL(range_unknown);
46
 
#ifdef CONFIG_COMEDI_DEBUG
47
 
EXPORT_SYMBOL(comedi_debug);
48
 
#endif
49
 
EXPORT_SYMBOL_GPL(comedi_alloc_board_minor);
50
 
EXPORT_SYMBOL_GPL(comedi_free_board_minor);
51
 
EXPORT_SYMBOL_GPL(comedi_pci_auto_config);
52
 
EXPORT_SYMBOL_GPL(comedi_pci_auto_unconfig);
53
 
EXPORT_SYMBOL_GPL(comedi_usb_auto_config);
54
 
EXPORT_SYMBOL_GPL(comedi_usb_auto_unconfig);
55
 
 
56
 
/* for kcomedilib */
57
 
EXPORT_SYMBOL(check_chanlist);
58
 
EXPORT_SYMBOL_GPL(comedi_get_device_file_info);
59
 
 
60
 
EXPORT_SYMBOL(comedi_buf_put);
61
 
EXPORT_SYMBOL(comedi_buf_get);
62
 
EXPORT_SYMBOL(comedi_buf_read_n_available);
63
 
EXPORT_SYMBOL(comedi_buf_write_free);
64
 
EXPORT_SYMBOL(comedi_buf_write_alloc);
65
 
EXPORT_SYMBOL(comedi_buf_read_free);
66
 
EXPORT_SYMBOL(comedi_buf_read_alloc);
67
 
EXPORT_SYMBOL(comedi_buf_memcpy_to);
68
 
EXPORT_SYMBOL(comedi_buf_memcpy_from);
69
 
EXPORT_SYMBOL(comedi_reset_async_buf);