staging: rtlwifi: mark expected switch fall-through in rtl_make_smps_action
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Tue, 10 Oct 2017 19:01:16 +0000 (14:01 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Oct 2017 13:53:50 +0000 (15:53 +0200)
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtlwifi/base.c

index f80770f..38e48f3 100644 (file)
@@ -2335,9 +2335,7 @@ static struct sk_buff *rtl_make_smps_action(struct ieee80211_hw *hw,
        case IEEE80211_SMPS_AUTOMATIC:/* 0 */
        case IEEE80211_SMPS_NUM_MODES:/* 4 */
                WARN_ON(1);
-       /* Here will get a 'MISSING_BREAK' in Coverity Test, just ignore it.
-        * According to Kernel Code, here is right.
-        */
+       /* fall through */
        case IEEE80211_SMPS_OFF:/* 1 */ /*MIMO_PS_NOLIMIT*/
                action_frame->u.action.u.ht_smps.smps_control =
                                WLAN_HT_SMPS_CONTROL_DISABLED;/* 0 */