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

clk: mvebu: ap80x-cpu: use semicolons rather than commas to separate statements

Replace commas with semicolons. What is done is essentially described by
the following Coccinelle semantic patch (http://coccinelle.lip6.fr/):

// <smpl>
@@ expression e1,e2; @@
e1
-,
+;
e2
... when any
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Link: https://lore.kernel.org/r/1601233948-11629-10-git-send-email-Julia.Lawall@inria.fr
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Julia Lawall and committed by
Stephen Boyd
39443a27 4f8a13e1

+1 -1
+1 -1
drivers/clk/mvebu/ap-cpu-clk.c
··· 197 197 198 198 stable_bit = BIT(clk->pll_regs->ratio_state_offset + 199 199 clk->cluster * 200 - clk->pll_regs->ratio_state_cluster_offset), 200 + clk->pll_regs->ratio_state_cluster_offset); 201 201 ret = regmap_read_poll_timeout(clk->pll_cr_base, 202 202 clk->pll_regs->ratio_state_reg, reg, 203 203 reg & stable_bit, STATUS_POLL_PERIOD_US,