Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b0c3e138 authored by Adam Lee's avatar Adam Lee Committed by Marcel Holtmann
Browse files

Bluetooth: ath3k: reduce pipe setting times in ath3k_load_fwfile()



Invoking usb_sndbulkpipe() on same pipe for same purpose only once is
enough.

Signed-off-by: default avatarAdam Lee <adam8157@gmail.com>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 53730107
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -288,10 +288,10 @@ static int ath3k_load_fwfile(struct usb_device *udev,
	sent += size;
	count -= size;

	while (count) {
		size = min_t(uint, count, BULK_SIZE);
	pipe = usb_sndbulkpipe(udev, 0x02);

	while (count) {
		size = min_t(uint, count, BULK_SIZE);
		memcpy(send_buf, firmware->data + sent, size);

		err = usb_bulk_msg(udev, pipe, send_buf, size,