staging: vt6656: card: mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a14731129a
commit
ddb35ab8d9
|
@ -382,11 +382,13 @@ void vnt_update_ifs(struct vnt_private *priv)
|
||||||
priv->difs -= 1;
|
priv->difs -= 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
/* fall through */
|
||||||
case RF_AIROHA7230:
|
case RF_AIROHA7230:
|
||||||
case RF_AL2230:
|
case RF_AL2230:
|
||||||
case RF_AL2230S:
|
case RF_AL2230S:
|
||||||
if (priv->bb_type != BB_TYPE_11B)
|
if (priv->bb_type != BB_TYPE_11B)
|
||||||
break;
|
break;
|
||||||
|
/* fall through */
|
||||||
case RF_RFMD2959:
|
case RF_RFMD2959:
|
||||||
case RF_VT3226:
|
case RF_VT3226:
|
||||||
case RF_VT3342A0:
|
case RF_VT3342A0:
|
||||||
|
|
Loading…
Reference in New Issue