OSDN Git Service

wireless: remove unneeded break
authorTom Rix <trix@redhat.com>
Tue, 20 Oct 2020 12:58:41 +0000 (05:58 -0700)
committerKalle Valo <kvalo@codeaurora.org>
Sat, 7 Nov 2020 11:34:22 +0000 (13:34 +0200)
A break is not needed if it is preceded by a return

Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20201020125841.26791-1-trix@redhat.com
drivers/net/wireless/ath/ath10k/htt_rx.c
drivers/net/wireless/ath/ath6kl/testmode.c
drivers/net/wireless/ath/ath9k/hw.c
drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c
drivers/net/wireless/realtek/rtlwifi/rtl8188ee/hw.c
drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hw.c
drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c

index 5c1af20..9c4e6cf 100644 (file)
@@ -3878,7 +3878,6 @@ bool ath10k_htt_t2h_msg_handler(struct ath10k *ar, struct sk_buff *skb)
                return ath10k_htt_rx_proc_rx_frag_ind(htt,
                                                      &resp->rx_frag_ind,
                                                      skb);
-               break;
        }
        case HTT_T2H_MSG_TYPE_TEST:
                break;
index f3906db..89c7c4e 100644 (file)
@@ -94,7 +94,6 @@ int ath6kl_tm_cmd(struct wiphy *wiphy, struct wireless_dev *wdev,
 
                return 0;
 
-               break;
        case ATH6KL_TM_CMD_RX_REPORT:
        default:
                return -EOPNOTSUPP;
index 6609ce1..b66eeb5 100644 (file)
@@ -2308,7 +2308,6 @@ void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
                ath_dbg(ath9k_hw_common(ah), BEACON,
                        "%s: unsupported opmode: %d\n", __func__, ah->opmode);
                return;
-               break;
        }
 
        REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
index cbdebef..8698ca4 100644 (file)
@@ -1202,13 +1202,11 @@ static int iwl_mvm_mac_ctx_send(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
                return iwl_mvm_mac_ctxt_cmd_sta(mvm, vif, action,
                                                force_assoc_off,
                                                bssid_override);
-               break;
        case NL80211_IFTYPE_AP:
                if (!vif->p2p)
                        return iwl_mvm_mac_ctxt_cmd_ap(mvm, vif, action);
                else
                        return iwl_mvm_mac_ctxt_cmd_go(mvm, vif, action);
-               break;
        case NL80211_IFTYPE_MONITOR:
                return iwl_mvm_mac_ctxt_cmd_listener(mvm, vif, action);
        case NL80211_IFTYPE_P2P_DEVICE:
index 63f9ea2..bd9160b 100644 (file)
@@ -1226,7 +1226,6 @@ static int _rtl88ee_set_media_status(struct ieee80211_hw *hw,
        default:
                pr_err("Network type %d not support!\n", type);
                return 1;
-               break;
        }
 
        /* MSR_INFRA == Link in infrastructure network;
index a36dc6e..f8a1de6 100644 (file)
@@ -1132,7 +1132,6 @@ static int _rtl8723e_set_media_status(struct ieee80211_hw *hw,
        default:
                pr_err("Network type %d not support!\n", type);
                return 1;
-               break;
        }
 
        /* MSR_INFRA == Link in infrastructure network;
index f41a764..225b8cd 100644 (file)
@@ -2085,12 +2085,10 @@ bool rtl8812ae_phy_config_rf_with_headerfile(struct ieee80211_hw *hw,
                return __rtl8821ae_phy_config_with_headerfile(hw,
                                radioa_array_table_a, radioa_arraylen_a,
                                _rtl8821ae_config_rf_radio_a);
-               break;
        case RF90_PATH_B:
                return __rtl8821ae_phy_config_with_headerfile(hw,
                                radioa_array_table_b, radioa_arraylen_b,
                                _rtl8821ae_config_rf_radio_b);
-               break;
        case RF90_PATH_C:
        case RF90_PATH_D:
                pr_err("switch case %#x not processed\n", rfpath);
@@ -2116,7 +2114,6 @@ bool rtl8821ae_phy_config_rf_with_headerfile(struct ieee80211_hw *hw,
                return __rtl8821ae_phy_config_with_headerfile(hw,
                        radioa_array_table, radioa_arraylen,
                        _rtl8821ae_config_rf_radio_a);
-               break;
 
        case RF90_PATH_B:
        case RF90_PATH_C: