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

Commit 9a01242d authored by Wei-Ning Huang's avatar Wei-Ning Huang Committed by Marcel Holtmann
Browse files

Bluetooth: btmrvl_sdio: fix firmware activation failure



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: default avatarWei-Ning Huang <wnhuang@chromium.org>
Signed-off-by: default avatarWei-Ning Huang <wnhuang@google.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 24c4a81d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;