From b2bfbceb59c91ab3ab84f715cc7a9447b784f2b3 Mon Sep 17 00:00:00 2001 From: fariouche Date: Mon, 8 Oct 2018 21:10:39 +0200 Subject: [PATCH] fixed compilation error (regression) --- hal/hal_mp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hal/hal_mp.c b/hal/hal_mp.c index 7a4274d..dbbaa82 100644 --- a/hal/hal_mp.c +++ b/hal/hal_mp.c @@ -2088,7 +2088,7 @@ void mpt_ProSetPMacTx(PADAPTER Adapter) else mpt_StopOfdmContTx(Adapter); #if defined(CONFIG_RTL8814A) - if (IS_HARDWARE_TYPE_8814A(padapter)) + if (IS_HARDWARE_TYPE_8814A(Adapter)) mpt_SetSingleTone_8814A(Adapter, FALSE, TRUE); #endif } @@ -2241,7 +2241,7 @@ void mpt_ProSetPMacTx(PADAPTER Adapter) phy_set_bb_reg(Adapter, 0xb04, 0xf, 4); /* TX Ofdm ON */ #if defined(CONFIG_RTL8814A) if (PMacTxInfo.Mode == OFDM_Single_Tone_TX) { - if (IS_HARDWARE_TYPE_8814A(padapter)) + if (IS_HARDWARE_TYPE_8814A(Adapter)) mpt_SetSingleTone_8814A(Adapter, TRUE, TRUE); } #endif