mirror of https://gitee.com/openkylin/linux.git
rtlwifi: Add board type for 8723be and 8192ee
With correct board_type, the phy praser can choose correct parameters. Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Cc: Yan-Hsuan Chuang <yhchuang@realtek.com> Cc: Birming Chiu <birming@realtek.com> Cc: Shaofu <shaofu@realtek.com> Cc: Steven Ting <steventing@realtek.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
6aad6075cc
commit
881d53ab1f
|
@ -2133,7 +2133,12 @@ static void _rtl92ee_read_adapter_info(struct ieee80211_hw *hw)
|
|||
if ((*(u8 *)&hwinfo[EEPROM_RF_BOARD_OPTION_92E]) == 0xFF)
|
||||
rtlefuse->board_type = 0;
|
||||
|
||||
if (rtlpriv->btcoexist.btc_info.btcoexist == 1)
|
||||
rtlefuse->board_type |= BIT(2); /* ODM_BOARD_BT */
|
||||
|
||||
rtlhal->board_type = rtlefuse->board_type;
|
||||
RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
|
||||
"board_type = 0x%x\n", rtlefuse->board_type);
|
||||
/*parse xtal*/
|
||||
rtlefuse->crystalcap = hwinfo[EEPROM_XTAL_92E];
|
||||
if (hwinfo[EEPROM_XTAL_92E] == 0xFF)
|
||||
|
|
|
@ -2114,6 +2114,13 @@ static void _rtl8723be_read_adapter_info(struct ieee80211_hw *hw,
|
|||
rtlefuse->autoload_failflag,
|
||||
hwinfo);
|
||||
|
||||
if (rtlpriv->btcoexist.btc_info.btcoexist == 1)
|
||||
rtlefuse->board_type |= BIT(2); /* ODM_BOARD_BT */
|
||||
|
||||
rtlhal->board_type = rtlefuse->board_type;
|
||||
RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
|
||||
"board_type = 0x%x\n", rtlefuse->board_type);
|
||||
|
||||
rtlhal->package_type = _rtl8723be_read_package_type(hw);
|
||||
|
||||
/* set channel plan from efuse */
|
||||
|
|
Loading…
Reference in New Issue