mirror of
https://github.com/aircrack-ng/rtl8812au.git
synced 2024-11-25 14:44:09 +00:00
Fix compilation error for RTL8812AU/RTL8821AU
This commit is contained in:
parent
e6945efee8
commit
194f6bb6a4
4
Makefile
4
Makefile
@ -1686,6 +1686,10 @@ $(MODULE_NAME)-$(CONFIG_MP_INCLUDED) += core/rtw_mp.o \
|
||||
ifeq ($(CONFIG_RTL8723B), y)
|
||||
$(MODULE_NAME)-$(CONFIG_MP_INCLUDED)+= core/rtw_bt_mp.o
|
||||
endif
|
||||
ifeq ($(CONFIG_RTL8821A), y)
|
||||
$(MODULE_NAME)-$(CONFIG_MP_INCLUDED)+= core/rtw_bt_mp.o
|
||||
endif
|
||||
|
||||
|
||||
obj-$(CONFIG_RTL8814AU) := $(MODULE_NAME).o
|
||||
|
||||
|
@ -607,8 +607,10 @@ MPT_InitializeAdapter(
|
||||
if (IS_HARDWARE_TYPE_8814A(pAdapter)) {
|
||||
pHalData->BackUp_IG_REG_4_Chnl_Section[0] = (u1Byte)PHY_QueryBBReg(pAdapter, rA_IGI_Jaguar, bMaskByte0);
|
||||
pHalData->BackUp_IG_REG_4_Chnl_Section[1] = (u1Byte)PHY_QueryBBReg(pAdapter, rB_IGI_Jaguar, bMaskByte0);
|
||||
#ifdef CONFIG_RTL8814A
|
||||
pHalData->BackUp_IG_REG_4_Chnl_Section[2] = (u1Byte)PHY_QueryBBReg(pAdapter, rC_IGI_Jaguar2, bMaskByte0);
|
||||
pHalData->BackUp_IG_REG_4_Chnl_Section[3] = (u1Byte)PHY_QueryBBReg(pAdapter, rD_IGI_Jaguar2, bMaskByte0);
|
||||
#endif
|
||||
}
|
||||
|
||||
return rtStatus;
|
||||
|
Loading…
Reference in New Issue
Block a user