]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
timers/PM: Drop unnecessary braces from tick_freeze()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 3 Apr 2015 13:31:32 +0000 (15:31 +0200)
committerIngo Molnar <mingo@kernel.org>
Fri, 3 Apr 2015 13:15:52 +0000 (15:15 +0200)
Some braces in tick_freeze() are not necessary, so drop them.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Cc: peterz@infradead.org
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1534128.H5hN3KBFB4@vostro.rjw.lan
Signed-off-by: Ingo Molnar <mingo@kernel.org>
kernel/time/tick-common.c

index ad66a51ca4fa5741048f9b90c9573594e263a723..3ae6afa1eb98e71cc82272cd0a79a25101eff429 100644 (file)
@@ -457,11 +457,10 @@ void tick_freeze(void)
        raw_spin_lock(&tick_freeze_lock);
 
        tick_freeze_depth++;
-       if (tick_freeze_depth == num_online_cpus()) {
+       if (tick_freeze_depth == num_online_cpus())
                timekeeping_suspend();
-       } else {
+       else
                tick_suspend_local();
-       }
 
        raw_spin_unlock(&tick_freeze_lock);
 }