From: Julia Lawall Date: Sun, 24 Feb 2013 11:55:34 +0000 (+0100) Subject: regulator: s5m8767: adjust duplicate test X-Git-Tag: omap-for-v3.10/dt-fixes-for-merge-window~131^2~6^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=720a9717bcdad6fbfa22cde082c47fb969a22f6f;p=pandora-kernel.git regulator: s5m8767: adjust duplicate test Delete successive tests to the same location. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @s exists@ local idexpression y; expression x,e; @@ *if ( \(x == NULL\|IS_ERR(x)\|y != 0\) ) { ... when forall return ...; } ... when != \(y = e\|y += e\|y -= e\|y |= e\|y &= e\|y++\|y--\|&y\) *if ( \(x == NULL\|IS_ERR(x)\|y != 0\) ) { ... when forall return ...; } // Signed-off-by: Julia Lawall Signed-off-by: Mark Brown --- Reading git-diff-tree failed