mirror of https://gitee.com/openkylin/linux.git
rtlwifi: rtl8723ae: Fix Smatch warning
Smatch reports the following: CHECK drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_btc.c drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_btc.c:137 rtl8723e_dm_bt_need_to_dec_bt_pwr() warn: inconsistent indenting Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
c42ceccec1
commit
154fb486df
|
@ -134,9 +134,9 @@ static bool rtl8723e_dm_bt_need_to_dec_bt_pwr(struct ieee80211_hw *hw)
|
|||
if (mgnt_link_status_query(hw) == RT_MEDIA_CONNECT) {
|
||||
RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_DMESG,
|
||||
"Need to decrease bt power\n");
|
||||
rtlpriv->btcoexist.cstate |=
|
||||
BT_COEX_STATE_DEC_BT_POWER;
|
||||
return true;
|
||||
rtlpriv->btcoexist.cstate |=
|
||||
BT_COEX_STATE_DEC_BT_POWER;
|
||||
return true;
|
||||
}
|
||||
|
||||
rtlpriv->btcoexist.cstate &= ~BT_COEX_STATE_DEC_BT_POWER;
|
||||
|
|
Loading…
Reference in New Issue