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

Commit 2892d397 authored by Andreas Schlick's avatar Andreas Schlick Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723au: Remove unnecessary bit masking.

parent c5081c54
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -156,8 +156,7 @@ ReadEFuseByte23a(struct rtw_adapter *Adapter, u16 _offset, u8 *pbuf)
	/* Check bit 32 read-ready */
	retry = 0;
	value32 = rtl8723au_read32(Adapter, EFUSE_CTRL);
	/* while(!(((value32 >> 24) & 0xff) & 0x80)  && (retry<10)) */
	while (!(((value32 >> 24) & 0xff) & 0x80) && (retry<10000)) {
	while (!((value32 >> 24) & 0x80) && retry < 10000) {
		value32 = rtl8723au_read32(Adapter, EFUSE_CTRL);
		retry++;
	}