diff options
Diffstat (limited to 'drivers/bluetooth/bcm203x.c')
-rw-r--r-- | drivers/bluetooth/bcm203x.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/bluetooth/bcm203x.c b/drivers/bluetooth/bcm203x.c index 8919ccf8274b..ee40201c7278 100644 --- a/drivers/bluetooth/bcm203x.c +++ b/drivers/bluetooth/bcm203x.c | |||
@@ -42,9 +42,7 @@ | |||
42 | #define BT_DBG(D...) | 42 | #define BT_DBG(D...) |
43 | #endif | 43 | #endif |
44 | 44 | ||
45 | #define VERSION "1.1" | 45 | #define VERSION "1.2" |
46 | |||
47 | static int ignore = 0; | ||
48 | 46 | ||
49 | static struct usb_device_id bcm203x_table[] = { | 47 | static struct usb_device_id bcm203x_table[] = { |
50 | /* Broadcom Blutonium (BCM2033) */ | 48 | /* Broadcom Blutonium (BCM2033) */ |
@@ -175,7 +173,7 @@ static int bcm203x_probe(struct usb_interface *intf, const struct usb_device_id | |||
175 | 173 | ||
176 | BT_DBG("intf %p id %p", intf, id); | 174 | BT_DBG("intf %p id %p", intf, id); |
177 | 175 | ||
178 | if (ignore || (intf->cur_altsetting->desc.bInterfaceNumber != 0)) | 176 | if (intf->cur_altsetting->desc.bInterfaceNumber != 0) |
179 | return -ENODEV; | 177 | return -ENODEV; |
180 | 178 | ||
181 | data = kzalloc(sizeof(*data), GFP_KERNEL); | 179 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
@@ -300,9 +298,6 @@ static void __exit bcm203x_exit(void) | |||
300 | module_init(bcm203x_init); | 298 | module_init(bcm203x_init); |
301 | module_exit(bcm203x_exit); | 299 | module_exit(bcm203x_exit); |
302 | 300 | ||
303 | module_param(ignore, bool, 0644); | ||
304 | MODULE_PARM_DESC(ignore, "Ignore devices from the matching table"); | ||
305 | |||
306 | MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>"); | 301 | MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>"); |
307 | MODULE_DESCRIPTION("Broadcom Blutonium firmware driver ver " VERSION); | 302 | MODULE_DESCRIPTION("Broadcom Blutonium firmware driver ver " VERSION); |
308 | MODULE_VERSION(VERSION); | 303 | MODULE_VERSION(VERSION); |