Fix coding style issue which requires a space after a comma.

Signed-off-by: An Ha <zero579...@gmail.com>
---
 .../staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c   | 26 +++++++++++-----------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c 
b/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c
index bce3771..48c6160 100644
--- a/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c
+++ b/drivers/staging/rtl8821ae/rtl8821ae/hal_bt_coexist.c
@@ -197,7 +197,7 @@ u8 rtl8821ae_dm_bt_check_coex_rssi_state1(struct 
ieee80211_hw *hw,
                                rtlpcipriv->btcoexist.current_state |= 
BT_COEX_STATE_WIFI_RSSI_1_MEDIUM;
                                rtlpcipriv->btcoexist.current_state &= 
~BT_COEX_STATE_WIFI_RSSI_1_HIGH;
                                rtlpcipriv->btcoexist.current_state &= 
~BT_COEX_STATE_WIFI_RSSI_1_LOW;
-                               RT_TRACE(COMP_BT_COEXIST, DBG_TRACE,("[DM][BT], 
RSSI_1 state switch to Medium\n"));
+                               RT_TRACE(COMP_BT_COEXIST, DBG_TRACE, 
("[DM][BT], RSSI_1 state switch to Medium\n"));
                        } else {
                                bt_rssi_state = BT_RSSI_STATE_STAY_HIGH;
                                RT_TRACE(COMP_BT_COEXIST, DBG_TRACE, 
("[DM][BT], RSSI_1 state stay at High\n"));
@@ -382,11 +382,11 @@ void rtl8821ae_dm_bt_agc_table(struct ieee80211_hw *hw, 
u8 type)
 
        if (type == BT_AGCTABLE_OFF) {
                RT_TRACE(COMP_BT_COEXIST, DBG_TRACE, ("[BT]AGCTable Off!\n"));
-               rtl_write_dword(rtlpriv, 0xc78,0x641c0001);
-               rtl_write_dword(rtlpriv, 0xc78,0x631d0001);
-               rtl_write_dword(rtlpriv, 0xc78,0x621e0001);
-               rtl_write_dword(rtlpriv, 0xc78,0x611f0001);
-               rtl_write_dword(rtlpriv, 0xc78,0x60200001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x641c0001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x631d0001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x621e0001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x611f0001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x60200001);
 
                rtl8821ae_phy_set_rf_reg(hw, RF90_PATH_A,
                                        RF_RX_AGC_HP, 0xfffff, 0x32000);
@@ -400,11 +400,11 @@ void rtl8821ae_dm_bt_agc_table(struct ieee80211_hw *hw, 
u8 type)
                                        RF_RX_G1, 0xfffff, 0x30355);
        } else if (type == BT_AGCTABLE_ON) {
                RT_TRACE(COMP_BT_COEXIST, DBG_TRACE, ("[BT]AGCTable On!\n"));
-               rtl_write_dword(rtlpriv, 0xc78,0x4e1c0001);
-               rtl_write_dword(rtlpriv, 0xc78,0x4d1d0001);
-               rtl_write_dword(rtlpriv, 0xc78,0x4c1e0001);
-               rtl_write_dword(rtlpriv, 0xc78,0x4b1f0001);
-               rtl_write_dword(rtlpriv, 0xc78,0x4a200001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x4e1c0001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x4d1d0001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x4c1e0001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x4b1f0001);
+               rtl_write_dword(rtlpriv, 0xc78, 0x4a200001);
 
                rtl8821ae_phy_set_rf_reg(hw, RF90_PATH_A,
                                        RF_RX_AGC_HP, 0xfffff, 0xdc000);
@@ -428,10 +428,10 @@ void rtl8821ae_dm_bt_bb_back_off_level(struct 
ieee80211_hw *hw, u8 type)
 
        if (type == BT_BB_BACKOFF_OFF) {
                RT_TRACE(COMP_BT_COEXIST, DBG_TRACE, ("[BT]BBBackOffLevel 
Off!\n"));
-               rtl_write_dword(rtlpriv, 0xc04,0x3a05611);
+               rtl_write_dword(rtlpriv, 0xc04, 0x3a05611);
        } else if (type == BT_BB_BACKOFF_ON) {
                RT_TRACE(COMP_BT_COEXIST, DBG_TRACE, ("[BT]BBBackOffLevel 
On!\n"));
-               rtl_write_dword(rtlpriv, 0xc04,0x3a07611);
+               rtl_write_dword(rtlpriv, 0xc04, 0x3a07611);
                rtlpcipriv->btcoexist.b_sw_coexist_all_off = false;
        }
 }
-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to