Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1473112 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Greg Kroah-Hartman
Browse files

staging: r8822be: mark expected switch fall-throughs



In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.

Signed-off-by: default avatarGustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 583d6a93
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3391,8 +3391,10 @@ halmac_cfg_txbf_88xx(struct halmac_adapter *halmac_adapter, u8 userid,
		switch (bw) {
		case HALMAC_BW_80:
			temp42C |= BIT_R_TXBF0_80M;
			/* fall through */
		case HALMAC_BW_40:
			temp42C |= BIT_R_TXBF0_40M;
			/* fall through */
		case HALMAC_BW_20:
			temp42C |= BIT_R_TXBF0_20M;
			break;