Commit 8488e211 authored by Ping-Ke Shih's avatar Ping-Ke Shih Committed by Kalle Valo

rtlwifi: Add return value to btc_set.

We will use return value to handle error case.
Signed-off-by: default avatarPing-Ke Shih <pkshih@realtek.com>
Signed-off-by: default avatarLarry 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: default avatarKalle Valo <kvalo@codeaurora.org>
parent 838dd0d3
...@@ -534,6 +534,7 @@ static bool halbtc_set(void *void_btcoexist, u8 set_type, void *in_buf) ...@@ -534,6 +534,7 @@ static bool halbtc_set(void *void_btcoexist, u8 set_type, void *in_buf)
bool *bool_tmp = (bool *)in_buf; bool *bool_tmp = (bool *)in_buf;
u8 *u8_tmp = (u8 *)in_buf; u8 *u8_tmp = (u8 *)in_buf;
u32 *u32_tmp = (u32 *)in_buf; u32 *u32_tmp = (u32 *)in_buf;
bool ret = true;
if (!halbtc_is_bt_coexist_available(btcoexist)) if (!halbtc_is_bt_coexist_available(btcoexist))
return false; return false;
...@@ -577,6 +578,7 @@ static bool halbtc_set(void *void_btcoexist, u8 set_type, void *in_buf) ...@@ -577,6 +578,7 @@ static bool halbtc_set(void *void_btcoexist, u8 set_type, void *in_buf)
/* the following are some action which will be triggered */ /* the following are some action which will be triggered */
case BTC_SET_ACT_GET_BT_RSSI: case BTC_SET_ACT_GET_BT_RSSI:
ret = false;
break; break;
case BTC_SET_ACT_AGGREGATE_CTRL: case BTC_SET_ACT_AGGREGATE_CTRL:
halbtc_aggregation_check(btcoexist); halbtc_aggregation_check(btcoexist);
...@@ -622,7 +624,7 @@ static bool halbtc_set(void *void_btcoexist, u8 set_type, void *in_buf) ...@@ -622,7 +624,7 @@ static bool halbtc_set(void *void_btcoexist, u8 set_type, void *in_buf)
break; break;
} }
return true; return ret;
} }
/************************************************************ /************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment