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

Commit 93416c87 authored by Holger Schurig's avatar Holger Schurig Committed by John W. Linville
Browse files

libertas: speeds up downloading of CF firmware



Keep the timeout the same (1000*500 == 100000 * 5), but take shorter
naps. Makes downloading the firmware slightly faster.

Signed-off-by: default avatarHolger Schurig <hs4233@mail.mn-solutions.de>
Acked-by: default avatarDan Williams <dcbw@redhat.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent b43441a4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -148,11 +148,11 @@ static int if_cs_poll_while_fw_download(struct if_cs_card *card, uint addr, u8 r
{
	int i;

	for (i = 0; i < 1000; i++) {
	for (i = 0; i < 100000; i++) {
		u8 val = if_cs_read8(card, addr);
		if (val == reg)
			return i;
		udelay(500);
		udelay(5);
	}
	return -ETIME;
}