Skip to content

Commit f76c340

Browse files
Colin Ian KingKalle Valo
authored andcommitted
rtlwifi: btcoex: fix spelling mistake "initilized" -> "initialized"
There is a spelling mistake in one of the fields in the btc_coexist struct, fix it. Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
1 parent c5f9852 commit f76c340

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8192e2ant.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ static void btc8192e2ant_set_sw_rf_rx_lpf_corner(struct btc_coexist *btcoexist,
862862
/* Resume RF Rx LPF corner
863863
* After initialized, we can use coex_dm->btRf0x1eBackup
864864
*/
865-
if (btcoexist->initilized) {
865+
if (btcoexist->initialized) {
866866
RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
867867
"[BTCoex], Resume RF Rx LPF corner!!\n");
868868
btcoexist->btc_set_rf_reg(btcoexist, BTC_RF_A, 0x1e,

drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1461,7 +1461,7 @@ void exhalbtc_init_coex_dm(struct btc_coexist *btcoexist)
14611461
ex_btc8192e2ant_init_coex_dm(btcoexist);
14621462
}
14631463

1464-
btcoexist->initilized = true;
1464+
btcoexist->initialized = true;
14651465
}
14661466

14671467
void exhalbtc_ips_notify(struct btc_coexist *btcoexist, u8 type)

drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ struct btc_coexist {
679679
bool auto_report_2ant;
680680
bool dbg_mode_1ant;
681681
bool dbg_mode_2ant;
682-
bool initilized;
682+
bool initialized;
683683
bool stop_coex_dm;
684684
bool manual_control;
685685
struct btc_statistics statistics;

0 commit comments

Comments
 (0)