diff options
author | Adam Lee <adam8157@gmail.com> | 2014-05-27 01:49:07 -0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2014-05-27 09:14:45 -0400 |
commit | 3abb56de8750675a2d70705687254c9e653ffd4c (patch) | |
tree | 0a107ee2c4b811adb447fe8bbc40e7af10a5a611 | |
parent | d7b2545023ecfde94d3ea9c03c5480ac18da96c9 (diff) |
Bluetooth: ath3k: no need to set same pipe multiple times
Invoking usb_sndbulkpipe() on same pipe for same purpose only once is
enough.
Signed-off-by: Adam Lee <adam8157@gmail.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
-rw-r--r-- | drivers/bluetooth/ath3k.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c index be571fef185d..4aef96b0eb63 100644 --- a/drivers/bluetooth/ath3k.c +++ b/drivers/bluetooth/ath3k.c | |||
@@ -191,9 +191,10 @@ static int ath3k_load_firmware(struct usb_device *udev, | |||
191 | sent += 20; | 191 | sent += 20; |
192 | count -= 20; | 192 | count -= 20; |
193 | 193 | ||
194 | pipe = usb_sndbulkpipe(udev, 0x02); | ||
195 | |||
194 | while (count) { | 196 | while (count) { |
195 | size = min_t(uint, count, BULK_SIZE); | 197 | size = min_t(uint, count, BULK_SIZE); |
196 | pipe = usb_sndbulkpipe(udev, 0x02); | ||
197 | memcpy(send_buf, firmware->data + sent, size); | 198 | memcpy(send_buf, firmware->data + sent, size); |
198 | 199 | ||
199 | err = usb_bulk_msg(udev, pipe, send_buf, size, | 200 | err = usb_bulk_msg(udev, pipe, send_buf, size, |