1
0

treewide: Use fallthrough pseudo-keyword

Replace the existing /* fall through */ comments and its variants with
the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary
fall-through markings when it is the case.

[1] https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through

Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Este cometimento está contido em:
Gustavo A. R. Silva
2020-08-23 17:36:59 -05:00
ascendente d012a7190f
cometimento df561f6688
1148 ficheiros modificados com 2667 adições e 2737 eliminações

Ver ficheiro

@@ -604,13 +604,13 @@ static void ti_sn_bridge_read_valid_rates(struct ti_sn_bridge *pdata,
DRM_DEV_ERROR(pdata->dev,
"Unexpected max rate (%#x); assuming 5.4 GHz\n",
(int)dpcd_val);
/* fall through */
fallthrough;
case DP_LINK_BW_5_4:
rate_valid[7] = 1;
/* fall through */
fallthrough;
case DP_LINK_BW_2_7:
rate_valid[4] = 1;
/* fall through */
fallthrough;
case DP_LINK_BW_1_62:
rate_valid[1] = 1;
break;