agp: use semicolons rather than commas to separate statements
authorJulia Lawall <Julia.Lawall@inria.fr>
Sun, 27 Sep 2020 19:12:18 +0000 (21:12 +0200)
committerDave Airlie <airlied@redhat.com>
Sun, 27 Sep 2020 20:06:52 +0000 (06:06 +1000)
commit32e4d9df60f71d641fbe628a9afbe2f44d7e9a37
tree789ac930f98dfe2f5d32f27acaed9ca6ab157834
parent6ea6be77086f23d4b346c9946dae24593befda2e
agp: 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>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/char/agp/amd-k7-agp.c
drivers/char/agp/nvidia-agp.c
drivers/char/agp/sworks-agp.c