[ALSA] Remove xxx_t typedefs: Documentation
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / bluetooth / lib.c
blobee6a66979913c8fb4c0d4dca00335bcc3e89c235
1 /*
2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
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;
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.
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.
25 /* Bluetooth kernel library. */
27 #include <linux/config.h>
28 #include <linux/module.h>
30 #include <linux/kernel.h>
31 #include <linux/stddef.h>
32 #include <linux/string.h>
33 #include <asm/errno.h>
35 #include <net/bluetooth/bluetooth.h>
37 void baswap(bdaddr_t *dst, bdaddr_t *src)
39 unsigned char *d = (unsigned char *) dst;
40 unsigned char *s = (unsigned char *) src;
41 unsigned int i;
43 for (i = 0; i < 6; i++)
44 d[i] = s[5 - i];
46 EXPORT_SYMBOL(baswap);
48 char *batostr(bdaddr_t *ba)
50 static char str[2][18];
51 static int i = 1;
53 i ^= 1;
54 sprintf(str[i], "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",
55 ba->b[0], ba->b[1], ba->b[2],
56 ba->b[3], ba->b[4], ba->b[5]);
58 return str[i];
60 EXPORT_SYMBOL(batostr);
62 /* Bluetooth error codes to Unix errno mapping */
63 int bt_err(__u16 code)
65 switch (code) {
66 case 0:
67 return 0;
69 case 0x01:
70 return EBADRQC;
72 case 0x02:
73 return ENOTCONN;
75 case 0x03:
76 return EIO;
78 case 0x04:
79 return EHOSTDOWN;
81 case 0x05:
82 return EACCES;
84 case 0x06:
85 return EBADE;
87 case 0x07:
88 return ENOMEM;
90 case 0x08:
91 return ETIMEDOUT;
93 case 0x09:
94 return EMLINK;
96 case 0x0a:
97 return EMLINK;
99 case 0x0b:
100 return EALREADY;
102 case 0x0c:
103 return EBUSY;
105 case 0x0d:
106 case 0x0e:
107 case 0x0f:
108 return ECONNREFUSED;
110 case 0x10:
111 return ETIMEDOUT;
113 case 0x11:
114 case 0x27:
115 case 0x29:
116 case 0x20:
117 return EOPNOTSUPP;
119 case 0x12:
120 return EINVAL;
122 case 0x13:
123 case 0x14:
124 case 0x15:
125 return ECONNRESET;
127 case 0x16:
128 return ECONNABORTED;
130 case 0x17:
131 return ELOOP;
133 case 0x18:
134 return EACCES;
136 case 0x1a:
137 return EPROTONOSUPPORT;
139 case 0x1b:
140 return ECONNREFUSED;
142 case 0x19:
143 case 0x1e:
144 case 0x23:
145 case 0x24:
146 case 0x25:
147 return EPROTO;
149 default:
150 return ENOSYS;
153 EXPORT_SYMBOL(bt_err);