Skip to content

Commit 7a346a3

Browse files
GustavoARSilvabebarino
authored andcommitted
clk: davinci: Use fallthrough pseudo-keyword
Replace the existing /* fall through */ comments and its variants with the new pseudo-keyword macro fallthrough[1]. [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 <[email protected]> Link: https://lore.kernel.org/r/20200727201122.GA2593@embeddedor Reviewed-by: David Lechner <[email protected]> Signed-off-by: Stephen Boyd <[email protected]>
1 parent d388e18 commit 7a346a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/davinci/pll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ static int davinci_pll_sysclk_rate_change(struct notifier_block *nb,
651651
pllcmd = readl(pll->base + PLLCMD);
652652
pllcmd |= PLLCMD_GOSET;
653653
writel(pllcmd, pll->base + PLLCMD);
654-
/* fallthrough */
654+
fallthrough;
655655
case PRE_RATE_CHANGE:
656656
/* Wait until for outstanding changes to take effect */
657657
do {

0 commit comments

Comments
 (0)