aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2015-01-03 02:35:20 -0500
committerJohan Hedberg <johan.hedberg@intel.com>2015-01-03 15:31:11 -0500
commit661cf88acd84875c275820ed01e42b25c4e9a1e2 (patch)
tree4c0323e5be47ebc173e8e4674b4948701b705fc8
parent043ec9bf7b9d7cdce84d2e8d3df9b9eb520d929e (diff)
Bluetooth: Use HCI_QUIRK_FIXUP_INQUIRY_MODE for Silicon Wave devices
The Silicon Wave based devices do support Inquiry Result with RSSI and so let the core know to enable them. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
-rw-r--r--drivers/bluetooth/btusb.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 833881392ce1..1ea63518d130 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -2084,8 +2084,10 @@ static int btusb_probe(struct usb_interface *intf,
2084 if (id->driver_info & BTUSB_MARVELL) 2084 if (id->driver_info & BTUSB_MARVELL)
2085 hdev->set_bdaddr = btusb_set_bdaddr_marvell; 2085 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2086 2086
2087 if (id->driver_info & BTUSB_SWAVE) 2087 if (id->driver_info & BTUSB_SWAVE) {
2088 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
2088 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks); 2089 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
2090 }
2089 2091
2090 if (id->driver_info & BTUSB_INTEL_BOOT) 2092 if (id->driver_info & BTUSB_INTEL_BOOT)
2091 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks); 2093 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);