diff options
author | Tom Rix <trix@redhat.com> | 2020-10-27 11:57:56 -0700 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2020-11-01 17:19:18 +0800 |
commit | 8404c66140e209794b15ee5529d4559334b3d364 (patch) | |
tree | d737302c61c5a31ffeba6d0ac821abf22bced8c3 /drivers/clk | |
parent | ea0c5cbaf8b70fd6fe0269fb0b951965c82229cc (diff) |
clk: imx: remove unneeded semicolon
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@redhat.com>
Reviewed-by: Abel Vesa <abel.vesa@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/imx/clk-pll14xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c index aba36e4217d2..2b5ed86b9dbb 100644 --- a/drivers/clk/imx/clk-pll14xx.c +++ b/drivers/clk/imx/clk-pll14xx.c @@ -416,7 +416,7 @@ struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name, __func__, name); kfree(pll); return ERR_PTR(-EINVAL); - }; + } pll->base = base; pll->hw.init = &init; |