diff options
author | Saurav Girepunje <saurav.girepunje@gmail.com> | 2019-10-28 19:51:30 +0100 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2019-10-31 09:05:39 +0100 |
commit | cbbd7f9a5e76e21a3d2ad8b0df030d1200a02110 (patch) | |
tree | a0fe272b90e7dab10fe09804bd61167d49fdb9bf | |
parent | rtw88: remove redundant null pointer check on arrays (diff) | |
download | linux-cbbd7f9a5e76e21a3d2ad8b0df030d1200a02110.tar.xz linux-cbbd7f9a5e76e21a3d2ad8b0df030d1200a02110.zip |
rtlwifi: rtl8192c: Drop condition with no effect
As the "else if" and "else" branch body are identical the condition
has no effect. So drop the "else if" condition.
Signed-off-by: Saurav Girepunje <saurav.girepunje@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
-rw-r--r-- | drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c index f2908ee5f860..4bef237f488d 100644 --- a/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c @@ -1649,8 +1649,6 @@ static void rtl92c_bt_ant_isolation(struct ieee80211_hw *hw, u8 tmp1byte) (rtlpriv->btcoexist.bt_rssi_state & BT_RSSI_STATE_SPECIAL_LOW)) { rtl_write_byte(rtlpriv, REG_GPIO_MUXCFG, 0xa0); - } else if (rtlpriv->btcoexist.bt_service == BT_PAN) { - rtl_write_byte(rtlpriv, REG_GPIO_MUXCFG, tmp1byte); } else { rtl_write_byte(rtlpriv, REG_GPIO_MUXCFG, tmp1byte); } |