From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:39284 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751850AbbDZJvV (ORCPT ); Sun, 26 Apr 2015 05:51:21 -0400 Subject: Patch "Bluetooth: Ignore isochronous endpoints for Intel USB bootloader" has been added to the 3.14-stable tree To: marcel@holtmann.org, gregkh@linuxfoundation.org, johan.hedberg@intel.com Cc: , From: Date: Sun, 26 Apr 2015 11:51:13 +0200 Message-ID: <143004187324474@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled Bluetooth: Ignore isochronous endpoints for Intel USB bootloader to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: bluetooth-ignore-isochronous-endpoints-for-intel-usb-bootloader.patch and it can be found in the queue-3.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From d92f2df0565ea04101d6ac04bdc10feeb1d93c94 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 6 Jul 2014 14:53:55 +0200 Subject: Bluetooth: Ignore isochronous endpoints for Intel USB bootloader From: Marcel Holtmann commit d92f2df0565ea04101d6ac04bdc10feeb1d93c94 upstream. The isochronous endpoints are not valid when the Intel Bluetooth controller boots up in bootloader mode. So just mark these endpoints as broken and then they will not be configured. Signed-off-by: Marcel Holtmann Signed-off-by: Johan Hedberg Signed-off-by: Greg Kroah-Hartman --- drivers/bluetooth/btusb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -121,7 +121,8 @@ static const struct usb_device_id btusb_ { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01) }, /* Intel Bluetooth USB Bootloader (RAM module) */ - { USB_DEVICE(0x8087, 0x0a5a), .driver_info = BTUSB_INTEL_BOOT }, + { USB_DEVICE(0x8087, 0x0a5a), + .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC }, { } /* Terminating entry */ }; Patches currently in stable-queue which might be from marcel@holtmann.org are queue-3.14/bluetooth-add-support-for-broadcom-device-of-asus-z97-deluxe-motherboard.patch queue-3.14/bluetooth-add-support-for-acer-2.patch queue-3.14/bluetooth-add-firmware-update-for-atheros-0cf3-311f.patch queue-3.14/add-a-new-pid-vid-0227-0930-for-ar3012.patch queue-3.14/bluetooth-add-support-for-intel-bootloader-devices.patch queue-3.14/bluetooth-add-usb-device-04ca-3010-as-atheros-ar3012.patch queue-3.14/bluetooth-add-support-for-acer.patch queue-3.14/bluetooth-btusb-add-imc-networks-broadcom-based.patch queue-3.14/bluetooth-append-new-supported-device-to-the-list.patch queue-3.14/bluetooth-ignore-isochronous-endpoints-for-intel-usb-bootloader.patch queue-3.14/bluetooth-sort-the-list-of-ids-in-the-source-code.patch queue-3.14/bluetooth-enable-atheros-0cf3-311e-for-firmware-upload.patch