From: Julia Lawall Date: Sun, 9 Nov 2014 09:06:32 +0000 (+0100) Subject: staging: lustre: osc: remove final uses of the GOTO macro X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~238 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=490e0e898ba4c625bbf53d691cb8554a1a494063;p=pandora-kernel.git staging: lustre: osc: remove final uses of the GOTO macro The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ identifier lbl; identifier rc; constant c; @@ - GOTO(lbl,\(rc\|c\)); + goto lbl; @@ identifier lbl; expression rc; @@ - GOTO(lbl,rc); + rc; + goto lbl; // In one case (OES_INV), consecutive gotos were factorized and a break was removed. Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed