Replace commas with semicolons. What is done is essentially described byReviewed-by: David Lechner <david@xxxxxxxxxxxxxx>
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@xxxxxxxx>
---