This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / net / bluetooth / syms.c
1 /* 
2    BlueZ - Bluetooth protocol stack for Linux
3    Copyright (C) 2000-2001 Qualcomm Incorporated
4
5    Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License version 2 as
9    published by the Free Software Foundation;
10
11    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
15    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
16    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
17    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
18    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
21    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
22    SOFTWARE IS DISCLAIMED.
23 */
24
25 /*
26  * Bluetooth symbols.
27  *
28  * $Id: syms.c,v 1.1 2002/03/08 21:06:59 maxk Exp $
29  */
30
31 #include <linux/config.h>
32 #include <linux/module.h>
33
34 #include <linux/types.h>
35 #include <linux/errno.h>
36 #include <linux/kernel.h>
37 #include <linux/init.h>
38 #include <linux/skbuff.h>
39 #include <linux/socket.h>
40
41 #include <net/bluetooth/bluetooth.h>
42 #include <net/bluetooth/hci_core.h>
43
44 /* HCI Core */
45 EXPORT_SYMBOL(hci_alloc_dev);
46 EXPORT_SYMBOL(hci_free_dev);
47 EXPORT_SYMBOL(hci_register_dev);
48 EXPORT_SYMBOL(hci_unregister_dev);
49 EXPORT_SYMBOL(hci_suspend_dev);
50 EXPORT_SYMBOL(hci_resume_dev);
51
52 EXPORT_SYMBOL(hci_register_proto);
53 EXPORT_SYMBOL(hci_unregister_proto);
54
55 EXPORT_SYMBOL(hci_get_route);
56 EXPORT_SYMBOL(hci_connect);
57 EXPORT_SYMBOL(hci_dev_get);
58 EXPORT_SYMBOL(hci_conn_auth);
59 EXPORT_SYMBOL(hci_conn_encrypt);
60
61 EXPORT_SYMBOL(hci_send_acl);
62 EXPORT_SYMBOL(hci_send_sco);
63 EXPORT_SYMBOL(hci_send_cmd);
64 EXPORT_SYMBOL(hci_si_event);
65
66 /* Bluetooth lib */
67 EXPORT_SYMBOL(bt_dump);
68 EXPORT_SYMBOL(baswap);
69 EXPORT_SYMBOL(batostr);
70 EXPORT_SYMBOL(bt_err);
71
72 /* Bluetooth sockets */
73 EXPORT_SYMBOL(bt_sock_register);
74 EXPORT_SYMBOL(bt_sock_unregister);
75 EXPORT_SYMBOL(bt_sock_alloc);
76 EXPORT_SYMBOL(bt_sock_link);
77 EXPORT_SYMBOL(bt_sock_unlink);
78 EXPORT_SYMBOL(bt_sock_recvmsg);
79 EXPORT_SYMBOL(bt_sock_poll);
80 EXPORT_SYMBOL(bt_accept_enqueue);
81 EXPORT_SYMBOL(bt_accept_dequeue);
82 EXPORT_SYMBOL(bt_sock_wait_state);
83
84 EXPORT_SYMBOL(proc_bt);