Commit 5156b054 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Kalle Valo

mt7601u: phy: mark expected switch fall-through

In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Signed-off-by: default avatarGustavo A. R. Silva <gustavo@embeddedor.com>
Acked-by: default avatarJakub Kicinski <kubakici@wp.pl>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 8cf304a8
...@@ -795,6 +795,7 @@ mt7601u_phy_rf_pa_mode_val(struct mt7601u_dev *dev, int phy_mode, int tx_rate) ...@@ -795,6 +795,7 @@ mt7601u_phy_rf_pa_mode_val(struct mt7601u_dev *dev, int phy_mode, int tx_rate)
switch (phy_mode) { switch (phy_mode) {
case MT_PHY_TYPE_OFDM: case MT_PHY_TYPE_OFDM:
tx_rate += 4; tx_rate += 4;
/* fall through */
case MT_PHY_TYPE_CCK: case MT_PHY_TYPE_CCK:
reg = dev->rf_pa_mode[0]; reg = dev->rf_pa_mode[0];
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment