Skip to content

Commit

Permalink
Bluetooth: btmrvl_sdio: fix firmware activation failure
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Wei-Ning Huang authored and Marcel Holtmann committed Mar 10, 2016
1 parent 24c4a81 commit 9a01242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/bluetooth/btmrvl_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,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;
Expand Down

0 comments on commit 9a01242

Please sign in to comment.