commit | 32e4d9df60f71d641fbe628a9afbe2f44d7e9a37 | [log] [tgz] |
---|---|---|
author | Julia Lawall <Julia.Lawall@inria.fr> | Sun Sep 27 21:12:18 2020 +0200 |
committer | Dave Airlie <airlied@redhat.com> | Mon Sep 28 06:06:52 2020 +1000 |
tree | 789ac930f98dfe2f5d32f27acaed9ca6ab157834 | |
parent | 6ea6be77086f23d4b346c9946dae24593befda2e [diff] |
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>