diff options
author | Wei-Ning Huang <wnhuang@chromium.org> | 2016-03-08 11:40:06 +0800 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2016-06-15 15:51:47 +0200 |
commit | 94e3230bf179f9700e160c0f4a05305cc5299a62 (patch) | |
tree | 6090cb8109b835281420a2c1deecf51f629642b8 | |
parent | 480268431f91855d05c419807793dd8b25ee4168 (diff) |
Bluetooth: btmrvl_sdio: fix firmware activation failure
commit 9a01242dc7fc4d5fe3f722afbf35b33aa414cd2f upstream.
In some case, the btmrvl_sdio firmware would fail to active within the
polling time. Increase the polling interval to 100 msec to fix the
issue.
Signed-off-by: Wei-Ning Huang <wnhuang@chromium.org>
Signed-off-by: Wei-Ning Huang <wnhuang@google.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Cc: Oliver Neukum <oliver@neukum.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | drivers/bluetooth/btmrvl_sdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/btmrvl_sdio.c b/drivers/bluetooth/btmrvl_sdio.c index 00da6df9f71e..65c5f256a5d5 100644 --- a/drivers/bluetooth/btmrvl_sdio.c +++ b/drivers/bluetooth/btmrvl_sdio.c @@ -269,7 +269,7 @@ static int btmrvl_sdio_verify_fw_download(struct btmrvl_sdio_card *card, if (firmwarestat == FIRMWARE_READY) return 0; - msleep(10); + msleep(100); } return -ETIMEDOUT; |