arch/arm/mach-omap2/dpll3xxx.c: drop if around WARN_ON omap-for-v3.8/cleanup-for-merge-window-signed
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 16 Dec 2012 19:30:02 +0000 (11:30 -0800)
committerTony Lindgren <tony@atomide.com>
Mon, 17 Dec 2012 18:50:41 +0000 (10:50 -0800)
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/)

// <smpl>
@@
expression e;
@@
- if (e) WARN_ON(1);
+ WARN_ON(e);
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Tony Lindgren <tony@atomide.com>

No differences found