mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 21:45:45 +02:00
Bluetooth: btusb: Fixed too many in-token issue for Mediatek Chip.
[ Upstream commit 8454ed9ff9 ]
This patch reduce in-token during download patch procedure.
Don't submit urb for polling event before sending hci command.
Signed-off-by: mark-yw.chen <mark-yw.chen@mediatek.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
3d08b59179
commit
5f5f8022c1
|
|
@ -2963,11 +2963,6 @@ static int btusb_mtk_hci_wmt_sync(struct hci_dev *hdev,
|
||||||
struct btmtk_wmt_hdr *hdr;
|
struct btmtk_wmt_hdr *hdr;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
/* Submit control IN URB on demand to process the WMT event */
|
|
||||||
err = btusb_mtk_submit_wmt_recv_urb(hdev);
|
|
||||||
if (err < 0)
|
|
||||||
return err;
|
|
||||||
|
|
||||||
/* Send the WMT command and wait until the WMT event returns */
|
/* Send the WMT command and wait until the WMT event returns */
|
||||||
hlen = sizeof(*hdr) + wmt_params->dlen;
|
hlen = sizeof(*hdr) + wmt_params->dlen;
|
||||||
if (hlen > 255)
|
if (hlen > 255)
|
||||||
|
|
@ -2989,6 +2984,11 @@ static int btusb_mtk_hci_wmt_sync(struct hci_dev *hdev,
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Submit control IN URB on demand to process the WMT event */
|
||||||
|
err = btusb_mtk_submit_wmt_recv_urb(hdev);
|
||||||
|
if (err < 0)
|
||||||
|
return err;
|
||||||
|
|
||||||
/* The vendor specific WMT commands are all answered by a vendor
|
/* The vendor specific WMT commands are all answered by a vendor
|
||||||
* specific event and will have the Command Status or Command
|
* specific event and will have the Command Status or Command
|
||||||
* Complete as with usual HCI command flow control.
|
* Complete as with usual HCI command flow control.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user