clk: uniphier: 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-2-git-send-email-Julia.Lawall@inria.fr Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
9123e3a74e
commit
4f8a13e1c2
|
@ -90,7 +90,7 @@ struct clk_hw *uniphier_clk_register_cpugear(struct device *dev,
|
|||
init.ops = &uniphier_clk_cpugear_ops;
|
||||
init.flags = CLK_SET_RATE_PARENT;
|
||||
init.parent_names = data->parent_names;
|
||||
init.num_parents = data->num_parents,
|
||||
init.num_parents = data->num_parents;
|
||||
|
||||
gear->regmap = regmap;
|
||||
gear->regbase = data->regbase;
|
||||
|
|
|
@ -70,7 +70,7 @@ struct clk_hw *uniphier_clk_register_mux(struct device *dev,
|
|||
init.ops = &uniphier_clk_mux_ops;
|
||||
init.flags = CLK_SET_RATE_PARENT;
|
||||
init.parent_names = data->parent_names;
|
||||
init.num_parents = data->num_parents,
|
||||
init.num_parents = data->num_parents;
|
||||
|
||||
mux->regmap = regmap;
|
||||
mux->reg = data->reg;
|
||||
|
|
Loading…
Reference in New Issue