1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-09-19 20:50:41 +00:00

Fixed compiler warning for unused function

This commit is contained in:
kimocoder 2021-12-12 22:16:47 +01:00
parent 7bb51141de
commit 1b63ee6c7b

View File

@ -608,6 +608,7 @@ VOID mpt_ToggleIG_8814A(PADAPTER pAdapter)
u1Byte Path = 0;
u4Byte IGReg = rA_IGI_Jaguar, IGvalue = 0;
/* // kimocoder: Disable below as it's not in use.
for (Path; Path <= RF_PATH_D; Path++) {
switch (Path) {
case RF_PATH_B:
@ -623,11 +624,12 @@ VOID mpt_ToggleIG_8814A(PADAPTER pAdapter)
IGReg = rA_IGI_Jaguar;
break;
}
*/
IGvalue = phy_query_bb_reg(pAdapter, IGReg, bMaskByte0);
phy_set_bb_reg(pAdapter, IGReg, bMaskByte0, IGvalue + 2);
phy_set_bb_reg(pAdapter, IGReg, bMaskByte0, IGvalue);
}
}
VOID mpt_SetRFPath_8814A(PADAPTER pAdapter)