Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: rockchip: fix coding style for clk-cpu.c

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>

authored by

Shawn Lin and committed by
Heiko Stuebner
fc6d875e 022dce0b

+1 -1
+1 -1
drivers/clk/rockchip/clk-cpu.c
··· 116 116 117 117 pr_debug("%s: setting reg 0x%x to 0x%x\n", 118 118 __func__, clksel->reg, clksel->val); 119 - writel(clksel->val , cpuclk->reg_base + clksel->reg); 119 + writel(clksel->val, cpuclk->reg_base + clksel->reg); 120 120 } 121 121 } 122 122