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

Commit b473bc17 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville
Browse files

b43: HT-PHY: fix typo in 0x2059 radio init



Following operation was incorrectly translated:
 radio_read(0x0011) -> 0xffff
radio_write(0x0011) <- 0xfff7

Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 49ac26fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ static void b43_radio_2059_init(struct b43_wldev *dev)
		b43_radio_mask(dev, 0x17F, ~0x1);
	}

	b43_radio_mask(dev, 0x11, 0x0008);
	b43_radio_mask(dev, 0x11, ~0x0008);
}

/**************************************************