From: Julia Lawall Date: Sun, 16 Dec 2012 19:30:02 +0000 (-0800) Subject: arch/arm/mach-omap2/dpll3xxx.c: drop if around WARN_ON X-Git-Tag: omap-for-v3.8/cleanup-for-merge-window-signed^0 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f64d204b5cf21b282445ba2fa357d970028c9f52;p=pandora-kernel.git arch/arm/mach-omap2/dpll3xxx.c: 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: Tony Lindgren --- Reading git-diff-tree failed