staging: rtlwifi: btcoexist: Compress two lines into one line

Challenge suggested by coccinelle.
Compresses two lines into one line and remove unnecessary variable.

Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Payal Kshirsagar 2019-03-31 20:11:31 +05:30 committed by Greg Kroah-Hartman
parent 22228e6a6e
commit bce05d1528

View File

@ -456,7 +456,6 @@ static u32 halbtc_get_wifi_link_status(struct btc_coexist *btcoexist)
*/
struct rtl_priv *rtlpriv = btcoexist->adapter;
struct rtl_mac *mac = rtl_mac(rtlpriv);
u32 ret_val = 0;
u32 port_connected_status = 0, num_of_connected_port = 0;
if (mac->opmode == NL80211_IFTYPE_STATION &&
@ -471,9 +470,7 @@ static u32 halbtc_get_wifi_link_status(struct btc_coexist *btcoexist)
}
/* TODO: P2P Connected Status */
ret_val = (num_of_connected_port << 16) | port_connected_status;
return ret_val;
return (num_of_connected_port << 16) | port_connected_status;
}
static bool halbtc_get(void *void_btcoexist, u8 get_type, void *out_buf)