OSDN Git Service

rtw89: remove unnecessary conditional operators
authorYe Guojin <ye.guojin@zte.com.cn>
Thu, 4 Nov 2021 06:11:19 +0000 (06:11 +0000)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 26 Nov 2021 16:11:02 +0000 (18:11 +0200)
The conditional operator is unnecessary while assigning values to the
bool variables.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Ye Guojin <ye.guojin@zte.com.cn>
Acked-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211104061119.1685-1-ye.guojin@zte.com.cn
drivers/net/wireless/realtek/rtw89/debug.c
drivers/net/wireless/realtek/rtw89/mac.c
drivers/net/wireless/realtek/rtw89/phy.c
drivers/net/wireless/realtek/rtw89/rtw8852a.c

index 29eb188..75f1062 100644 (file)
@@ -814,7 +814,7 @@ rtw89_debug_priv_mac_dbg_port_dump_select(struct file *filp,
                return -EINVAL;
        }
 
-       enable = set == 0 ? false : true;
+       enable = set != 0;
        switch (sel) {
        case 0:
                debugfs_priv->dbgpkg_en.ss_dbg = enable;
index afcd07a..944c232 100644 (file)
@@ -3695,7 +3695,7 @@ void _rtw89_mac_bf_monitor_track(struct rtw89_dev *rtwdev)
 {
        struct rtw89_traffic_stats *stats = &rtwdev->stats;
        struct rtw89_vif *rtwvif;
-       bool en = stats->tx_tfc_lv > stats->rx_tfc_lv ? false : true;
+       bool en = stats->tx_tfc_lv <= stats->rx_tfc_lv;
        bool old = test_bit(RTW89_FLAG_BFEE_EN, rtwdev->flags);
 
        if (en == old)
index 0620ef0..abb4cdc 100644 (file)
@@ -1779,7 +1779,7 @@ static void rtw89_phy_cfo_dm(struct rtw89_dev *rtwdev)
        }
        rtw89_phy_cfo_crystal_cap_adjust(rtwdev, new_cfo);
        cfo->cfo_avg_pre = new_cfo;
-       x_cap_update =  cfo->crystal_cap == pre_x_cap ? false : true;
+       x_cap_update =  cfo->crystal_cap != pre_x_cap;
        rtw89_debug(rtwdev, RTW89_DBG_CFO, "Xcap_up=%d\n", x_cap_update);
        rtw89_debug(rtwdev, RTW89_DBG_CFO, "Xcap: D:%x C:%x->%x, ofst=%d\n",
                    cfo->def_x_cap, pre_x_cap, cfo->crystal_cap,
index 5c6ffca..9e25e53 100644 (file)
@@ -1053,10 +1053,10 @@ static void rtw8852a_set_channel_bb(struct rtw89_dev *rtwdev,
                                    struct rtw89_channel_params *param,
                                    enum rtw89_phy_idx phy_idx)
 {
-       bool cck_en = param->center_chan > 14 ? false : true;
+       bool cck_en = param->center_chan <= 14;
        u8 pri_ch_idx = param->pri_ch_idx;
 
-       if (param->center_chan <= 14)
+       if (cck_en)
                rtw8852a_ctrl_sco_cck(rtwdev, param->center_chan,
                                      param->primary_chan, param->bandwidth);