You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
b43: Increase loop tries in do_dummy_tx
One of the spin-on-condition loops in routine do_dummy_tx always exits before the condition is satisfied. The hardware might be left in an inconsistent state that might be the cause of the PHY transmission errors seen by some users. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
1bef016a5a
commit
1d280ddcfd
@@ -815,7 +815,7 @@ void b43_dummy_transmission(struct b43_wldev *dev)
|
||||
break;
|
||||
udelay(10);
|
||||
}
|
||||
for (i = 0x00; i < 0x0A; i++) {
|
||||
for (i = 0x00; i < 0x19; i++) {
|
||||
value = b43_read16(dev, 0x0690);
|
||||
if (!(value & 0x0100))
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user