]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
clk: mvebu: ap80x-cpu: use semicolons rather than commas to separate statements
authorJulia Lawall <Julia.Lawall@inria.fr>
Sun, 27 Sep 2020 19:12:19 +0000 (21:12 +0200)
committerStephen Boyd <sboyd@kernel.org>
Wed, 14 Oct 2020 00:43:05 +0000 (17:43 -0700)
commit39443a27cb78abc1425830e9f305d7cc0f4ad7ae
treeefc9c09f4e824c92607dafcea4ccf43316c2da18
parent4f8a13e1c2c2927e393755f703104e33907cdb4f
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>
drivers/clk/mvebu/ap-cpu-clk.c