From bce05d152864f034922044d1d0325f06c818602d Mon Sep 17 00:00:00 2001 From: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> Date: Sun, 31 Mar 2019 20:11:31 +0530 Subject: [PATCH] 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> --- drivers/staging/rtlwifi/btcoexist/halbtcoutsrc.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/staging/rtlwifi/btcoexist/halbtcoutsrc.c b/drivers/staging/rtlwifi/btcoexist/halbtcoutsrc.c index 9198189e4799..2354032fad13 100644 --- a/drivers/staging/rtlwifi/btcoexist/halbtcoutsrc.c +++ b/drivers/staging/rtlwifi/btcoexist/halbtcoutsrc.c @@ -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) -- 2.30.9