Skip to content

Commit

Permalink
clk: rockchip: fix coding style for clk-cpu.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Shawn Lin authored and Heiko Stuebner committed Feb 15, 2016
1 parent 022dce0 commit fc6d875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/rockchip/clk-cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit fc6d875

Please sign in to comment.