summaryrefslogtreecommitdiff
path: root/drivers/staging
diff options
context:
space:
mode:
authorMahati Chamarthy <mahati.chamarthy@gmail.com>2014-09-20 04:03:36 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-19 17:15:15 -0700
commit1709a582e1f8977de040f02d9e9e52ec89f8603f (patch)
tree75235c421a45117965478aeff3d8d426f11e0f50 /drivers/staging
parentfe6dc85eaf8bb180ad3510a57bd69f3b8f9c2dbb (diff)
Staging: rtl8192ee: Fix break is not useful warning
This fixes the following checkpatch.pl warnings: WARNING: break is not useful after a goto or return Signed-off-by: Mahati Chamarthy <mahati.chamarthy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/rtl8192ee/core.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/staging/rtl8192ee/core.c b/drivers/staging/rtl8192ee/core.c
index 71aa241b170b..3fd98e0e53d7 100644
--- a/drivers/staging/rtl8192ee/core.c
+++ b/drivers/staging/rtl8192ee/core.c
@@ -1227,14 +1227,12 @@ static int rtl_op_ampdu_action(struct ieee80211_hw *hw,
RT_TRACE(COMP_MAC80211, DBG_TRACE,
"IEEE80211_AMPDU_TX_START: TID:%d\n", tid);
return rtl92e_tx_agg_start(hw, vif, sta, tid, ssn);
- break;
case IEEE80211_AMPDU_TX_STOP_CONT:
case IEEE80211_AMPDU_TX_STOP_FLUSH:
case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
RT_TRACE(COMP_MAC80211, DBG_TRACE,
"IEEE80211_AMPDU_TX_STOP: TID:%d\n", tid);
return rtl92e_tx_agg_stop(hw, vif, sta, tid);
- break;
case IEEE80211_AMPDU_TX_OPERATIONAL:
RT_TRACE(COMP_MAC80211, DBG_TRACE,
"IEEE80211_AMPDU_TX_OPERATIONAL:TID:%d\n", tid);
@@ -1244,12 +1242,10 @@ static int rtl_op_ampdu_action(struct ieee80211_hw *hw,
RT_TRACE(COMP_MAC80211, DBG_TRACE,
"IEEE80211_AMPDU_RX_START:TID:%d\n", tid);
return rtl92e_rx_agg_start(hw, sta, tid);
- break;
case IEEE80211_AMPDU_RX_STOP:
RT_TRACE(COMP_MAC80211, DBG_TRACE,
"IEEE80211_AMPDU_RX_STOP:TID:%d\n", tid);
return rtl92e_rx_agg_stop(hw, sta, tid);
- break;
default:
RT_TRACE(COMP_ERR, DBG_EMERG,
"IEEE80211_AMPDU_ERR!!!!:\n");