projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea0c5cb
)
clk: imx: remove unneeded semicolon
author
Tom Rix
<trix@redhat.com>
Tue, 27 Oct 2020 18:57:56 +0000
(11:57 -0700)
committer
Shawn Guo
<shawnguo@kernel.org>
Sun, 1 Nov 2020 09:19:18 +0000
(17:19 +0800)
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>
drivers/clk/imx/clk-pll14xx.c
patch
|
blob
|
history
diff --git
a/drivers/clk/imx/clk-pll14xx.c
b/drivers/clk/imx/clk-pll14xx.c
index
aba36e4
..
2b5ed86
100644
(file)
--- 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;