]> Pileus Git - ~andy/linux/commitdiff
cpuidle: replace multiline statements with single line in cpuidle_idle_call()
authorViresh Kumar <viresh.kumar@linaro.org>
Thu, 3 Oct 2013 15:56:49 +0000 (21:26 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 30 Oct 2013 00:21:23 +0000 (01:21 +0100)
Few statements in cpuidle_idle_call() are broken into multiple lines,
although that isn't really necessary. Convert those to single line.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpuidle/cpuidle.c

index 86e805986d6f3bc49e1706a53ab8e2d08be3a2c9..039a807b217a80360efb1a445ccd2c1f010ddcc4 100644 (file)
@@ -145,8 +145,7 @@ int cpuidle_idle_call(void)
        broadcast = !!(drv->states[next_state].flags & CPUIDLE_FLAG_TIMER_STOP);
 
        if (broadcast)
-               clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER,
-                                  &dev->cpu);
+               clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &dev->cpu);
 
        if (cpuidle_state_is_coupled(dev, drv, next_state))
                entered_state = cpuidle_enter_state_coupled(dev, drv,
@@ -155,8 +154,7 @@ int cpuidle_idle_call(void)
                entered_state = cpuidle_enter_state(dev, drv, next_state);
 
        if (broadcast)
-               clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT,
-                                  &dev->cpu);
+               clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu);
 
        trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);