aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@lip6.fr>2012-12-16 14:30:02 -0500
committerTony Lindgren <tony@atomide.com>2012-12-17 13:50:41 -0500
commitf64d204b5cf21b282445ba2fa357d970028c9f52 (patch)
tree146612c30eadef5cba206fc99d38fd6b3a3c3c60 /arch/arm
parent7eae44fa67b9203d7c5a2fa297050185598c9711 (diff)
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/) // <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>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-omap2/dpll3xxx.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/dpll3xxx.c b/arch/arm/mach-omap2/dpll3xxx.c
index fafb28c0dcbc..bebd7eda6f71 100644
--- a/arch/arm/mach-omap2/dpll3xxx.c
+++ b/arch/arm/mach-omap2/dpll3xxx.c
@@ -485,8 +485,7 @@ int omap3_noncore_dpll_set_rate(struct clk_hw *hw, unsigned long rate,
485 if (!cpu_is_omap44xx() && !cpu_is_omap3630()) { 485 if (!cpu_is_omap44xx() && !cpu_is_omap3630()) {
486 freqsel = _omap3_dpll_compute_freqsel(clk, 486 freqsel = _omap3_dpll_compute_freqsel(clk,
487 dd->last_rounded_n); 487 dd->last_rounded_n);
488 if (!freqsel) 488 WARN_ON(!freqsel);
489 WARN_ON(1);
490 } 489 }
491 490
492 pr_debug("%s: %s: set rate: locking rate to %lu.\n", 491 pr_debug("%s: %s: set rate: locking rate to %lu.\n",