summaryrefslogtreecommitdiff
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2003-04-24 01:18:52 +0200
committerMarcel Holtmann <linux-bt.adm@hostme.bitkeeper.com>2003-04-24 01:18:52 +0200
commita04eefa17e8d7677fabe9eecdaa29a1d2f3cee67 (patch)
treecf7efe99b51935286370561bd1140ee250b0e071 /drivers/bluetooth
parent2df06ce5cbbe852caa70db446604f88ea3a13b8a (diff)
[Bluetooth] Correction of the HCI USB driver description
This patch reverts the module description and other comments.
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/hci_usb.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/bluetooth/hci_usb.c b/drivers/bluetooth/hci_usb.c
index 7ad1a3dddcad..2b173dfe5f9e 100644
--- a/drivers/bluetooth/hci_usb.c
+++ b/drivers/bluetooth/hci_usb.c
@@ -24,6 +24,7 @@
*/
/*
+ * Bluetooth HCI USB driver.
* Based on original USB Bluetooth driver for Linux kernel
* Copyright (c) 2000 Greg Kroah-Hartman <greg@kroah.com>
* Copyright (c) 2000 Mark Douglas Corner <mcorner@umich.edu>
@@ -952,9 +953,7 @@ int hci_usb_init(void)
{
int err;
- BT_INFO("BlueZ HCI USB driver ver %s Copyright (C) 2000,2001 Qualcomm Inc",
- VERSION);
- BT_INFO("Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>");
+ BT_INFO("HCI USB driver ver %s", VERSION);
if ((err = usb_register(&hci_usb_driver)) < 0)
BT_ERR("Failed to register HCI USB driver");
@@ -971,5 +970,5 @@ module_init(hci_usb_init);
module_exit(hci_usb_cleanup);
MODULE_AUTHOR("Maxim Krasnyansky <maxk@qualcomm.com>");
-MODULE_DESCRIPTION("BlueZ HCI USB driver ver " VERSION);
+MODULE_DESCRIPTION("Bluetooth HCI USB driver ver " VERSION);
MODULE_LICENSE("GPL");