diff options
author | Jiapeng Chong <jiapeng.chong@linux.alibaba.com> | 2023-06-14 11:48:08 +0300 |
---|---|---|
committer | Jerome Brunet <jbrunet@baylibre.com> | 2023-06-15 13:29:10 +0300 |
commit | b8533204885a4e1e643014eccb9c727c55f58ce0 (patch) | |
tree | bd808ce1e88a48bc110b4bf7a39e23442f2301aa /drivers/clk/meson | |
parent | e13dd04a242cc8c064b9af8cde38b8e9a548cf81 (diff) | |
download | linux-b8533204885a4e1e643014eccb9c727c55f58ce0.tar.xz |
clk: meson: pll: remove unneeded semicolon
No functional modification involved.
./drivers/clk/meson/clk-pll.c:373:2-3: Unneeded semicolon.
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Link: https://lore.kernel.org/r/20230614084808.98819-1-jiapeng.chong@linux.alibaba.com
Fixes: b6ec400aa153 ("clk: meson: introduce new pll power-on sequence for A1 SoC family")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Diffstat (limited to 'drivers/clk/meson')
-rw-r--r-- | drivers/clk/meson/clk-pll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/meson/clk-pll.c b/drivers/clk/meson/clk-pll.c index 56ec2210f1ad..8fef90bf962f 100644 --- a/drivers/clk/meson/clk-pll.c +++ b/drivers/clk/meson/clk-pll.c @@ -370,7 +370,7 @@ static int meson_clk_pll_enable(struct clk_hw *hw) usleep_range(10, 20); meson_parm_write(clk->map, &pll->current_en, 1); usleep_range(40, 50); - }; + } if (MESON_PARM_APPLICABLE(&pll->l_detect)) { meson_parm_write(clk->map, &pll->l_detect, 1); |