Skip to content

Commit 7d06d58

Browse files
khfengholtmann
authored andcommitted
Revert "Bluetooth: btusb: fix QCA Rome suspend/resume"
This reverts commit fd86580. This commit causes a regression on some QCA ROME chips. The USB device reset happens in btusb_open(), hence firmware loading gets interrupted. Furthermore, this commit stops working after commit ("a0085f2510e8976614ad8f766b209448b385492f Bluetooth: btusb: driver to enable the usb-wakeup feature"). Reset-resume quirk only gets enabled in btusb_suspend() when it's not a wakeup source. If we really want to reset the USB device, we need to do it before btusb_open(). Let's handle it in drivers/usb/core/quirks.c. Cc: stable@vger.kernel.org Cc: Leif Liddy <leif.linux@gmail.com> Cc: Matthias Kaehlcke <mka@chromium.org> Cc: Brian Norris <briannorris@chromium.org> Cc: Daniel Drake <drake@endlessm.com> Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com> Reviewed-by: Brian Norris <briannorris@chromium.org> Tested-by: Brian Norris <briannorris@chromium.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
1 parent 43fff76 commit 7d06d58

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

drivers/bluetooth/btusb.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3119,12 +3119,6 @@ static int btusb_probe(struct usb_interface *intf,
31193119
if (id->driver_info & BTUSB_QCA_ROME) {
31203120
data->setup_on_usb = btusb_setup_qca;
31213121
hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
3122-
3123-
/* QCA Rome devices lose their updated firmware over suspend,
3124-
* but the USB hub doesn't notice any status change.
3125-
* Explicitly request a device reset on resume.
3126-
*/
3127-
set_bit(BTUSB_RESET_RESUME, &data->flags);
31283122
}
31293123

31303124
#ifdef CONFIG_BT_HCIBTUSB_RTL

0 commit comments

Comments
 (0)