From: Julia Lawall Date: Wed, 11 Jul 2012 08:58:38 +0000 (+0200) Subject: mtd: spear_smi: failure test for null rather than negative integer X-Git-Tag: v3.7-rc1~70^2~100 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5170978b421222ba4c3d64d1ebd4a03d64ae42e;p=pandora-kernel.git mtd: spear_smi: failure test for null rather than negative integer dev_get_platdata returns a pointer, so the failure value would be NULL rather than a negative integer. The semantic match that finds this problem is: (http://coccinelle.lip6.fr/) // @@ expression x,e; statement S1,S2; @@ *x = dev_get_platdata(...) ... when != x = e *if (x < 0) S1 else S2 // Signed-off-by: Julia Lawall Acked-by: Stefan Roese Signed-off-by: Artem Bityutskiy Signed-off-by: David Woodhouse --- Reading git-diff-tree failed