|
@@ -581,7 +581,7 @@ void rtl8821ae_phy_switch_wirelessband(struct ieee80211_hw *hw, u8 band)
|
|
|
count = 0;
|
|
|
reg_41a = rtl_read_word(rtlpriv, REG_TXPKT_EMPTY);
|
|
|
RT_TRACE(rtlpriv, COMP_SCAN, DBG_LOUD,
|
|
|
- "Reg41A value %d", reg_41a);
|
|
|
+ "Reg41A value %d\n", reg_41a);
|
|
|
reg_41a &= 0x30;
|
|
|
while ((reg_41a != 0x30) && (count < 50)) {
|
|
|
udelay(50);
|
|
@@ -591,7 +591,7 @@ void rtl8821ae_phy_switch_wirelessband(struct ieee80211_hw *hw, u8 band)
|
|
|
reg_41a &= 0x30;
|
|
|
count++;
|
|
|
RT_TRACE(rtlpriv, COMP_SCAN, DBG_LOUD,
|
|
|
- "Reg41A value %d", reg_41a);
|
|
|
+ "Reg41A value %d\n", reg_41a);
|
|
|
}
|
|
|
if (count != 0)
|
|
|
RT_TRACE(rtlpriv, COMP_MLME, DBG_LOUD,
|
|
@@ -1013,7 +1013,7 @@ static void _rtl8812ae_phy_cross_reference_ht_and_vht_txpower_limit(struct ieee8
|
|
|
rtlphy->txpwr_limit_5g[regulation][bw][3][channel][RF90_PATH_A];
|
|
|
}
|
|
|
|
|
|
- RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE, "use other value %d", temp_pwrlmt);
|
|
|
+ RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE, "use other value %d\n", temp_pwrlmt);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1482,12 +1482,12 @@ static s8 _rtl8812ae_phy_get_chnl_idx_of_txpwr_lmt(struct ieee80211_hw *hw,
|
|
|
channel_index = i;
|
|
|
}
|
|
|
} else
|
|
|
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, "Invalid Band %d in %s",
|
|
|
+ RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, "Invalid Band %d in %s\n",
|
|
|
band, __func__);
|
|
|
|
|
|
if (channel_index == -1)
|
|
|
RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
|
|
|
- "Invalid Channel %d of Band %d in %s", channel,
|
|
|
+ "Invalid Channel %d of Band %d in %s\n", channel,
|
|
|
band, __func__);
|
|
|
|
|
|
return channel_index;
|
|
@@ -1665,7 +1665,7 @@ static bool _rtl8821ae_phy_bb8821a_config_parafile(struct ieee80211_hw *hw)
|
|
|
rtstatus = _rtl8821ae_phy_config_bb_with_headerfile(hw,
|
|
|
BASEBAND_CONFIG_PHY_REG);
|
|
|
if (rtstatus != true) {
|
|
|
- RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "Write BB Reg Fail!!");
|
|
|
+ RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "Write BB Reg Fail!!\n");
|
|
|
return false;
|
|
|
}
|
|
|
_rtl8821ae_phy_init_tx_power_by_rate(hw);
|
|
@@ -1674,7 +1674,7 @@ static bool _rtl8821ae_phy_bb8821a_config_parafile(struct ieee80211_hw *hw)
|
|
|
BASEBAND_CONFIG_PHY_REG);
|
|
|
}
|
|
|
if (rtstatus != true) {
|
|
|
- RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "BB_PG Reg Fail!!");
|
|
|
+ RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "BB_PG Reg Fail!!\n");
|
|
|
return false;
|
|
|
}
|
|
|
|