blob: a9932fe57d923b2808db82d5ca501d7c7e965a1a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * Digianswer Bluetooth USB driver
4 *
Marcel Holtmanne24b21e2007-10-20 13:41:33 +02005 * Copyright (C) 2004-2007 Marcel Holtmann <marcel@holtmann.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/kernel.h>
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020025#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/slab.h>
28#include <linux/types.h>
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020029#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020031#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <linux/usb.h>
34
35#include <net/bluetooth/bluetooth.h>
36#include <net/bluetooth/hci_core.h>
37
Marcel Holtmann943cc592015-10-08 03:06:53 +020038#include "hci_uart.h"
39
40#define VERSION "0.11"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Marcel Holtmanne8549382013-10-11 07:46:20 -070042static const struct usb_device_id bpa10x_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 /* Tektronix BPA 100/105 (Digianswer) */
44 { USB_DEVICE(0x08fd, 0x0002) },
45
46 { } /* Terminating entry */
47};
48
49MODULE_DEVICE_TABLE(usb, bpa10x_table);
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051struct bpa10x_data {
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020052 struct hci_dev *hdev;
53 struct usb_device *udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020055 struct usb_anchor tx_anchor;
56 struct usb_anchor rx_anchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020058 struct sk_buff *rx_skb[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020061static void bpa10x_tx_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020063 struct sk_buff *skb = urb->context;
64 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
65
66 BT_DBG("%s urb %p status %d count %d", hdev->name,
67 urb, urb->status, urb->actual_length);
68
69 if (!test_bit(HCI_RUNNING, &hdev->flags))
70 goto done;
71
72 if (!urb->status)
73 hdev->stat.byte_tx += urb->transfer_buffer_length;
74 else
75 hdev->stat.err_tx++;
76
77done:
78 kfree(urb->setup_packet);
79
80 kfree_skb(skb);
81}
82
Marcel Holtmann943cc592015-10-08 03:06:53 +020083#define HCI_VENDOR_HDR_SIZE 5
84
85#define HCI_RECV_VENDOR \
86 .type = HCI_VENDOR_PKT, \
87 .hlen = HCI_VENDOR_HDR_SIZE, \
88 .loff = 3, \
89 .lsize = 2, \
90 .maxlen = HCI_MAX_FRAME_SIZE
91
92static const struct h4_recv_pkt bpa10x_recv_pkts[] = {
93 { H4_RECV_ACL, .recv = hci_recv_frame },
94 { H4_RECV_SCO, .recv = hci_recv_frame },
95 { H4_RECV_EVENT, .recv = hci_recv_frame },
96 { HCI_RECV_VENDOR, .recv = hci_recv_diag },
97};
98
Marcel Holtmanne24b21e2007-10-20 13:41:33 +020099static void bpa10x_rx_complete(struct urb *urb)
100{
101 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100102 struct bpa10x_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 int err;
104
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200105 BT_DBG("%s urb %p status %d count %d", hdev->name,
106 urb, urb->status, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200108 if (!test_bit(HCI_RUNNING, &hdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return;
110
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200111 if (urb->status == 0) {
Marcel Holtmann943cc592015-10-08 03:06:53 +0200112 bool idx = usb_pipebulk(urb->pipe);
113
114 data->rx_skb[idx] = h4_recv_buf(hdev, data->rx_skb[idx],
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200115 urb->transfer_buffer,
Marcel Holtmann943cc592015-10-08 03:06:53 +0200116 urb->actual_length,
117 bpa10x_recv_pkts,
118 ARRAY_SIZE(bpa10x_recv_pkts));
119 if (IS_ERR(data->rx_skb[idx])) {
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200120 BT_ERR("%s corrupted event packet", hdev->name);
121 hdev->stat.err_rx++;
Marcel Holtmann943cc592015-10-08 03:06:53 +0200122 data->rx_skb[idx] = NULL;
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200123 }
124 }
125
126 usb_anchor_urb(urb, &data->rx_anchor);
127
128 err = usb_submit_urb(urb, GFP_ATOMIC);
129 if (err < 0) {
130 BT_ERR("%s urb %p failed to resubmit (%d)",
131 hdev->name, urb, -err);
132 usb_unanchor_urb(urb);
133 }
134}
135
136static inline int bpa10x_submit_intr_urb(struct hci_dev *hdev)
137{
David Herrmann155961e2012-02-09 21:58:32 +0100138 struct bpa10x_data *data = hci_get_drvdata(hdev);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200139 struct urb *urb;
140 unsigned char *buf;
141 unsigned int pipe;
142 int err, size = 16;
143
144 BT_DBG("%s", hdev->name);
145
146 urb = usb_alloc_urb(0, GFP_KERNEL);
147 if (!urb)
148 return -ENOMEM;
149
150 buf = kmalloc(size, GFP_KERNEL);
151 if (!buf) {
152 usb_free_urb(urb);
153 return -ENOMEM;
154 }
155
156 pipe = usb_rcvintpipe(data->udev, 0x81);
157
158 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
159 bpa10x_rx_complete, hdev, 1);
160
161 urb->transfer_flags |= URB_FREE_BUFFER;
162
163 usb_anchor_urb(urb, &data->rx_anchor);
164
165 err = usb_submit_urb(urb, GFP_KERNEL);
166 if (err < 0) {
167 BT_ERR("%s urb %p submission failed (%d)",
168 hdev->name, urb, -err);
169 usb_unanchor_urb(urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 usb_free_urb(urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200173
174 return err;
175}
176
177static inline int bpa10x_submit_bulk_urb(struct hci_dev *hdev)
178{
David Herrmann155961e2012-02-09 21:58:32 +0100179 struct bpa10x_data *data = hci_get_drvdata(hdev);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200180 struct urb *urb;
181 unsigned char *buf;
182 unsigned int pipe;
183 int err, size = 64;
184
185 BT_DBG("%s", hdev->name);
186
187 urb = usb_alloc_urb(0, GFP_KERNEL);
188 if (!urb)
189 return -ENOMEM;
190
191 buf = kmalloc(size, GFP_KERNEL);
192 if (!buf) {
193 usb_free_urb(urb);
194 return -ENOMEM;
195 }
196
197 pipe = usb_rcvbulkpipe(data->udev, 0x82);
198
199 usb_fill_bulk_urb(urb, data->udev, pipe,
200 buf, size, bpa10x_rx_complete, hdev);
201
202 urb->transfer_flags |= URB_FREE_BUFFER;
203
204 usb_anchor_urb(urb, &data->rx_anchor);
205
206 err = usb_submit_urb(urb, GFP_KERNEL);
207 if (err < 0) {
208 BT_ERR("%s urb %p submission failed (%d)",
209 hdev->name, urb, -err);
210 usb_unanchor_urb(urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200211 }
212
213 usb_free_urb(urb);
214
215 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218static int bpa10x_open(struct hci_dev *hdev)
219{
David Herrmann155961e2012-02-09 21:58:32 +0100220 struct bpa10x_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 int err;
222
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200223 BT_DBG("%s", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200225 err = bpa10x_submit_intr_urb(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (err < 0)
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200227 goto error;
228
229 err = bpa10x_submit_bulk_urb(hdev);
230 if (err < 0)
231 goto error;
232
233 return 0;
234
235error:
236 usb_kill_anchored_urbs(&data->rx_anchor);
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return err;
239}
240
241static int bpa10x_close(struct hci_dev *hdev)
242{
David Herrmann155961e2012-02-09 21:58:32 +0100243 struct bpa10x_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200245 BT_DBG("%s", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200247 usb_kill_anchored_urbs(&data->rx_anchor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 return 0;
250}
251
252static int bpa10x_flush(struct hci_dev *hdev)
253{
David Herrmann155961e2012-02-09 21:58:32 +0100254 struct bpa10x_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200256 BT_DBG("%s", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200258 usb_kill_anchored_urbs(&data->tx_anchor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 return 0;
261}
262
Marcel Holtmannddd68ec2015-10-08 02:24:06 +0200263static int bpa10x_setup(struct hci_dev *hdev)
264{
265 const u8 req[] = { 0x07 };
266 struct sk_buff *skb;
267
268 BT_DBG("%s", hdev->name);
269
270 /* Read revision string */
271 skb = __hci_cmd_sync(hdev, 0xfc0e, sizeof(req), req, HCI_INIT_TIMEOUT);
272 if (IS_ERR(skb))
273 return PTR_ERR(skb);
274
275 BT_INFO("%s: %s", hdev->name, (char *)(skb->data + 1));
276
Marcel Holtmannb2999c12016-07-17 19:55:17 +0200277 hci_set_fw_info(hdev, "%s", skb->data + 1);
278
Marcel Holtmannddd68ec2015-10-08 02:24:06 +0200279 kfree_skb(skb);
280 return 0;
281}
282
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700283static int bpa10x_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
David Herrmann155961e2012-02-09 21:58:32 +0100285 struct bpa10x_data *data = hci_get_drvdata(hdev);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200286 struct usb_ctrlrequest *dr;
287 struct urb *urb;
288 unsigned int pipe;
289 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200291 BT_DBG("%s", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700293 skb->dev = (void *) hdev;
294
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200295 urb = usb_alloc_urb(0, GFP_ATOMIC);
296 if (!urb)
297 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100300 *skb_push(skb, 1) = hci_skb_pkt_type(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100302 switch (hci_skb_pkt_type(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 case HCI_COMMAND_PKT:
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200304 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
305 if (!dr) {
306 usb_free_urb(urb);
307 return -ENOMEM;
308 }
309
310 dr->bRequestType = USB_TYPE_VENDOR;
311 dr->bRequest = 0;
312 dr->wIndex = 0;
313 dr->wValue = 0;
314 dr->wLength = __cpu_to_le16(skb->len);
315
316 pipe = usb_sndctrlpipe(data->udev, 0x00);
317
318 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
319 skb->data, skb->len, bpa10x_tx_complete, skb);
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 hdev->stat.cmd_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 break;
323
324 case HCI_ACLDATA_PKT:
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200325 pipe = usb_sndbulkpipe(data->udev, 0x02);
326
327 usb_fill_bulk_urb(urb, data->udev, pipe,
328 skb->data, skb->len, bpa10x_tx_complete, skb);
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 hdev->stat.acl_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332
333 case HCI_SCODATA_PKT:
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200334 pipe = usb_sndbulkpipe(data->udev, 0x02);
335
336 usb_fill_bulk_urb(urb, data->udev, pipe,
337 skb->data, skb->len, bpa10x_tx_complete, skb);
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 hdev->stat.sco_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200342 default:
Adrian Bunkcb7cd422008-02-05 03:08:45 -0800343 usb_free_urb(urb);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200344 return -EILSEQ;
345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200347 usb_anchor_urb(urb, &data->tx_anchor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200349 err = usb_submit_urb(urb, GFP_ATOMIC);
350 if (err < 0) {
351 BT_ERR("%s urb %p submission failed", hdev->name, urb);
352 kfree(urb->setup_packet);
353 usb_unanchor_urb(urb);
354 }
355
356 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 return 0;
359}
360
Marcel Holtmann881f7e82015-10-08 03:01:44 +0200361static int bpa10x_set_diag(struct hci_dev *hdev, bool enable)
362{
363 const u8 req[] = { 0x00, enable };
364 struct sk_buff *skb;
365
366 BT_DBG("%s", hdev->name);
367
368 if (!test_bit(HCI_RUNNING, &hdev->flags))
369 return -ENETDOWN;
370
371 /* Enable sniffer operation */
372 skb = __hci_cmd_sync(hdev, 0xfc0e, sizeof(req), req, HCI_INIT_TIMEOUT);
373 if (IS_ERR(skb))
374 return PTR_ERR(skb);
375
376 kfree_skb(skb);
377 return 0;
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380static int bpa10x_probe(struct usb_interface *intf, const struct usb_device_id *id)
381{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct bpa10x_data *data;
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200383 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 int err;
385
386 BT_DBG("intf %p id %p", intf, id);
387
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200388 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
Marcel Holtmann245dc3d2005-10-28 19:20:57 +0200389 return -ENODEV;
390
Sachin Kamat704687c2012-07-27 12:38:34 +0530391 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200392 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200395 data->udev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200397 init_usb_anchor(&data->tx_anchor);
398 init_usb_anchor(&data->rx_anchor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 hdev = hci_alloc_dev();
Sachin Kamat704687c2012-07-27 12:38:34 +0530401 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100404 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +0100405 hci_set_drvdata(hdev, data);
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200406
407 data->hdev = hdev;
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 SET_HCIDEV_DEV(hdev, &intf->dev);
410
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200411 hdev->open = bpa10x_open;
412 hdev->close = bpa10x_close;
413 hdev->flush = bpa10x_flush;
Marcel Holtmannddd68ec2015-10-08 02:24:06 +0200414 hdev->setup = bpa10x_setup;
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200415 hdev->send = bpa10x_send_frame;
Marcel Holtmann881f7e82015-10-08 03:01:44 +0200416 hdev->set_diag = bpa10x_set_diag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Szymon Janca6c511c2012-05-23 12:35:46 +0200418 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 err = hci_register_dev(hdev);
421 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 hci_free_dev(hdev);
423 return err;
424 }
425
426 usb_set_intfdata(intf, data);
427
428 return 0;
429}
430
431static void bpa10x_disconnect(struct usb_interface *intf)
432{
433 struct bpa10x_data *data = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 BT_DBG("intf %p", intf);
436
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200437 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return;
439
440 usb_set_intfdata(intf, NULL);
441
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200442 hci_unregister_dev(data->hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Marcel Holtmanne24b21e2007-10-20 13:41:33 +0200444 hci_free_dev(data->hdev);
David Herrmannd25442b2012-01-07 15:47:17 +0100445 kfree_skb(data->rx_skb[0]);
446 kfree_skb(data->rx_skb[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449static struct usb_driver bpa10x_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 .name = "bpa10x",
451 .probe = bpa10x_probe,
452 .disconnect = bpa10x_disconnect,
453 .id_table = bpa10x_table,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700454 .disable_hub_initiated_lpm = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455};
456
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -0800457module_usb_driver(bpa10x_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
460MODULE_DESCRIPTION("Digianswer Bluetooth USB driver ver " VERSION);
461MODULE_VERSION(VERSION);
462MODULE_LICENSE("GPL");