From: Julia Lawall Date: Sat, 3 Nov 2012 20:30:21 +0000 (+0100) Subject: ext3: drop if around WARN_ON X-Git-Tag: v3.8-rc1~80^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4789775477718983b6f8c604a809b950c6a10052;p=pandora-kernel.git ext3: drop if around WARN_ON Just use WARN_ON rather than an if containing only WARN_ON(1). A simplified version of the semantic patch that makes this transformation is as follows: (http://coccinelle.lip6.fr/) // @@ expression e; @@ - if (e) WARN_ON(1); + WARN_ON(e); // Signed-off-by: Julia Lawall Signed-off-by: Jan Kara --- Reading git-diff-tree failed