diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2020-07-27 23:11:22 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2020-07-28 01:21:31 +0300 |
commit | 7a346a37e46abd9bfe0e24aa2aabb68d832280b8 (patch) | |
tree | 7fc42b48b81318c3f47fc708ed9a850f08cf1615 /drivers/clk/davinci | |
parent | d388e18f63b90a1256af490a856d67abd6558a38 (diff) | |
download | linux-7a346a37e46abd9bfe0e24aa2aabb68d832280b8.tar.xz |
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 <gustavoars@kernel.org>
Link: https://lore.kernel.org/r/20200727201122.GA2593@embeddedor
Reviewed-by: David Lechner <david@lechnology.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/davinci')
-rw-r--r-- | drivers/clk/davinci/pll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/davinci/pll.c b/drivers/clk/davinci/pll.c index 8a23d5dfd1f8..6c35e4bb7940 100644 --- a/drivers/clk/davinci/pll.c +++ b/drivers/clk/davinci/pll.c @@ -651,7 +651,7 @@ static int davinci_pll_sysclk_rate_change(struct notifier_block *nb, pllcmd = readl(pll->base + PLLCMD); pllcmd |= PLLCMD_GOSET; writel(pllcmd, pll->base + PLLCMD); - /* fallthrough */ + fallthrough; case PRE_RATE_CHANGE: /* Wait until for outstanding changes to take effect */ do { |