Skip to content

Commit

Permalink
rtlwifi: rtl8723ae: Fix Smatch warning
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Larry Finger authored and Kalle Valo committed Apr 6, 2016
1 parent c42cecc commit 154fb48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_btc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 154fb48

Please sign in to comment.