diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2015-10-21 01:31:45 +0200 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2015-10-21 07:32:12 +0300 |
commit | e4c534bbacab81fc67c81ae8af263a70f35ffec9 (patch) | |
tree | 9d2e27bdc9dabba358d94e98c9026514bec07939 | |
parent | 98a63aaf245e2522b0ddd86f38fb83883344bcaf (diff) | |
download | talos-op-linux-e4c534bbacab81fc67c81ae8af263a70f35ffec9.tar.gz talos-op-linux-e4c534bbacab81fc67c81ae8af263a70f35ffec9.zip |
Bluetooth: btusb: Set manufacturer for Intel bootloader devices
For Intel bootloader devices, set the manufacturer information so that
it becomes possible to decode the boot process.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
-rw-r--r-- | drivers/bluetooth/btusb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index bbe25e397f41..19961763015a 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -2931,8 +2931,10 @@ static int btusb_probe(struct usb_interface *intf, set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks); } - if (id->driver_info & BTUSB_INTEL_BOOT) + if (id->driver_info & BTUSB_INTEL_BOOT) { + hdev->manufacturer = 2; set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks); + } if (id->driver_info & BTUSB_ATH3012) { hdev->set_bdaddr = btusb_set_bdaddr_ath3012; |