forked from ghotiv/rtlwifi_new
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rtl8723be: Add L1 latency to rtl8723be
Signed-off-by: Larry Finger <[email protected]>
- Loading branch information
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- rtl8723be/phy.c | ||
+++ rtl8723be/phy.c | ||
@@ -520,12 +520,16 @@ static bool _rtl8723be_phy_bb8723b_config_parafile(struct ieee80211_hw *hw) | ||
|
||
/* switch ant to BT */ | ||
if (rtlpriv->rtlhal.interface == INTF_USB) { | ||
+ pr_info("**** %s: reg 0x948 0x0\n", __func__); | ||
rtl_write_dword(rtlpriv, 0x948, 0x0); | ||
} else { | ||
- if (rtlpriv->btcoexist.btc_info.single_ant_path == 0) | ||
+ if (rtlpriv->btcoexist.btc_info.single_ant_path == 0) { | ||
+ pr_info("**** %s: single_ant_path %d, reg 0x948 0x280\n", __func__, rtlpriv->btcoexist.btc_info.single_ant_path); | ||
rtl_write_dword(rtlpriv, 0x948, 0x280); | ||
- else | ||
+ } else { | ||
+ pr_info("**** %s: single_ant_path %d, reg 0x948 0x0\n", __func__, rtlpriv->btcoexist.btc_info.single_ant_path); | ||
rtl_write_dword(rtlpriv, 0x948, 0x0); | ||
+ } | ||
} | ||
|
||
rtstatus = _rtl8723be_phy_config_bb_with_headerfile(hw, |