drivers/gpio/gpio-omap.c: convert comma to semicolon
authorJulia Lawall <Julia.Lawall@lip6.fr>
Tue, 13 Aug 2013 07:16:56 +0000 (09:16 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 16 Aug 2013 15:14:29 +0000 (17:14 +0200)
commit388f4308412574268d38010d877575f8caebad79
treeaa827215ba9189b30f9204f5ee174afbe7e3ea2f
parentb168386eaf560bf13fcf2c166453714e779f763e
drivers/gpio/gpio-omap.c: convert comma to semicolon

Replace a comma between expression statements by a semicolon.  This changes
the semantics of the code, but given the current indentation appears to be
what is intended.

A simplified version of the semantic patch that performs this
transformation is as follows: (http://coccinelle.lip6.fr/)

// <smpl>
@r@
expression e1,e2,e;
type T;
identifier i;
@@

 e1
-,
+;
 e2;
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Kevin Hilman <khilman@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-omap.c