projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
022dce0
)
clk: rockchip: fix coding style for clk-cpu.c
author
Shawn Lin
<shawn.lin@rock-chips.com>
Mon, 15 Feb 2016 03:33:50 +0000
(11:33 +0800)
committer
Heiko Stuebner
<heiko@sntech.de>
Mon, 15 Feb 2016 22:38:35 +0000
(23:38 +0100)
Fix the issue reported by checkpatch:
ERROR: space prohibited before that ',' (ctx:WxW)
+ writel(clksel->val , cpuclk->reg_base + clksel->reg);
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
drivers/clk/rockchip/clk-cpu.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/clk/rockchip/clk-cpu.c
b/drivers/clk/rockchip/clk-cpu.c
index 68a2a87717d27c73065ab3011789257c9293d21e..4e73ed5cab5801110574f9846015e073b321c01b 100644
(file)
--- a/
drivers/clk/rockchip/clk-cpu.c
+++ b/
drivers/clk/rockchip/clk-cpu.c
@@
-116,7
+116,7
@@
static void rockchip_cpuclk_set_dividers(struct rockchip_cpuclk *cpuclk,
pr_debug("%s: setting reg 0x%x to 0x%x\n",
__func__, clksel->reg, clksel->val);
- writel(clksel->val
, cpuclk->reg_base + clksel->reg);
+ writel(clksel->val, cpuclk->reg_base + clksel->reg);
}
}