~ubuntu-branches/ubuntu/quantal/linux-backports-modules-3.5.0/quantal-updates

« back to all changes in this revision

Viewing changes to updates/cw-3.6/net/bluetooth/lib.c

  • Committer: Package Import Robot
  • Author(s): Leann Ogasawara
  • Date: 2012-10-10 22:28:55 UTC
  • Revision ID: package-import@ubuntu.com-20121010222855-qepocc61xktv6gs9
Tags: 3.5.0-17.1
* Open Quantal LBM
* Add compat-wireless 3.6
  -LP: #1066123

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
/* Bluetooth kernel library. */
 
26
 
 
27
#undef pr_fmt
 
28
#define pr_fmt(fmt) "Bluetooth: " fmt
 
29
 
 
30
#include <linux/export.h>
 
31
#include <linux/printk.h>
 
32
 
 
33
#include <net/bluetooth/bluetooth.h>
 
34
 
 
35
void baswap(bdaddr_t *dst, bdaddr_t *src)
 
36
{
 
37
        unsigned char *d = (unsigned char *) dst;
 
38
        unsigned char *s = (unsigned char *) src;
 
39
        unsigned int i;
 
40
 
 
41
        for (i = 0; i < 6; i++)
 
42
                d[i] = s[5 - i];
 
43
}
 
44
EXPORT_SYMBOL(baswap);
 
45
 
 
46
char *batostr(bdaddr_t *ba)
 
47
{
 
48
        static char str[2][18];
 
49
        static int i = 1;
 
50
 
 
51
        i ^= 1;
 
52
        sprintf(str[i], "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",
 
53
                ba->b[5], ba->b[4], ba->b[3],
 
54
                ba->b[2], ba->b[1], ba->b[0]);
 
55
 
 
56
        return str[i];
 
57
}
 
58
EXPORT_SYMBOL(batostr);
 
59
 
 
60
/* Bluetooth error codes to Unix errno mapping */
 
61
int bt_to_errno(__u16 code)
 
62
{
 
63
        switch (code) {
 
64
        case 0:
 
65
                return 0;
 
66
 
 
67
        case 0x01:
 
68
                return EBADRQC;
 
69
 
 
70
        case 0x02:
 
71
                return ENOTCONN;
 
72
 
 
73
        case 0x03:
 
74
                return EIO;
 
75
 
 
76
        case 0x04:
 
77
                return EHOSTDOWN;
 
78
 
 
79
        case 0x05:
 
80
                return EACCES;
 
81
 
 
82
        case 0x06:
 
83
                return EBADE;
 
84
 
 
85
        case 0x07:
 
86
                return ENOMEM;
 
87
 
 
88
        case 0x08:
 
89
                return ETIMEDOUT;
 
90
 
 
91
        case 0x09:
 
92
                return EMLINK;
 
93
 
 
94
        case 0x0a:
 
95
                return EMLINK;
 
96
 
 
97
        case 0x0b:
 
98
                return EALREADY;
 
99
 
 
100
        case 0x0c:
 
101
                return EBUSY;
 
102
 
 
103
        case 0x0d:
 
104
        case 0x0e:
 
105
        case 0x0f:
 
106
                return ECONNREFUSED;
 
107
 
 
108
        case 0x10:
 
109
                return ETIMEDOUT;
 
110
 
 
111
        case 0x11:
 
112
        case 0x27:
 
113
        case 0x29:
 
114
        case 0x20:
 
115
                return EOPNOTSUPP;
 
116
 
 
117
        case 0x12:
 
118
                return EINVAL;
 
119
 
 
120
        case 0x13:
 
121
        case 0x14:
 
122
        case 0x15:
 
123
                return ECONNRESET;
 
124
 
 
125
        case 0x16:
 
126
                return ECONNABORTED;
 
127
 
 
128
        case 0x17:
 
129
                return ELOOP;
 
130
 
 
131
        case 0x18:
 
132
                return EACCES;
 
133
 
 
134
        case 0x1a:
 
135
                return EPROTONOSUPPORT;
 
136
 
 
137
        case 0x1b:
 
138
                return ECONNREFUSED;
 
139
 
 
140
        case 0x19:
 
141
        case 0x1e:
 
142
        case 0x23:
 
143
        case 0x24:
 
144
        case 0x25:
 
145
                return EPROTO;
 
146
 
 
147
        default:
 
148
                return ENOSYS;
 
149
        }
 
150
}
 
151
EXPORT_SYMBOL(bt_to_errno);
 
152
 
 
153
int bt_info(const char *format, ...)
 
154
{
 
155
        struct va_format vaf;
 
156
        va_list args;
 
157
        int r;
 
158
 
 
159
        va_start(args, format);
 
160
 
 
161
        vaf.fmt = format;
 
162
        vaf.va = &args;
 
163
 
 
164
        r = pr_info("%pV", &vaf);
 
165
 
 
166
        va_end(args);
 
167
 
 
168
        return r;
 
169
}
 
170
EXPORT_SYMBOL(bt_info);
 
171
 
 
172
int bt_err(const char *format, ...)
 
173
{
 
174
        struct va_format vaf;
 
175
        va_list args;
 
176
        int r;
 
177
 
 
178
        va_start(args, format);
 
179
 
 
180
        vaf.fmt = format;
 
181
        vaf.va = &args;
 
182
 
 
183
        r = pr_err("%pV", &vaf);
 
184
 
 
185
        va_end(args);
 
186
 
 
187
        return r;
 
188
}
 
189
EXPORT_SYMBOL(bt_err);