mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
cpufreq: interactive: fix checkpatch warnings on long lines
Fix up checkpatch warning introduced by long lines in timer_rate patch. Change-Id: I22b105dafb1b49390799bb7577464da03f0f8afb Signed-off-by: Allen Martin <amartin@nvidia.com>
This commit is contained in:
committed by
Todd Poynor
parent
5c0f07b1fe
commit
9549cff379
@@ -225,7 +225,8 @@ rearm:
|
||||
|
||||
pcpu->time_in_idle = get_cpu_idle_time_us(
|
||||
data, &pcpu->idle_exit_time);
|
||||
mod_timer(&pcpu->cpu_timer, jiffies + usecs_to_jiffies(timer_rate));
|
||||
mod_timer(&pcpu->cpu_timer,
|
||||
jiffies + usecs_to_jiffies(timer_rate));
|
||||
}
|
||||
|
||||
exit:
|
||||
@@ -259,7 +260,8 @@ static void cpufreq_interactive_idle_start(void)
|
||||
pcpu->time_in_idle = get_cpu_idle_time_us(
|
||||
smp_processor_id(), &pcpu->idle_exit_time);
|
||||
pcpu->timer_idlecancel = 0;
|
||||
mod_timer(&pcpu->cpu_timer, jiffies + usecs_to_jiffies(timer_rate));
|
||||
mod_timer(&pcpu->cpu_timer,
|
||||
jiffies + usecs_to_jiffies(timer_rate));
|
||||
}
|
||||
#endif
|
||||
} else {
|
||||
@@ -309,7 +311,8 @@ static void cpufreq_interactive_idle_end(void)
|
||||
get_cpu_idle_time_us(smp_processor_id(),
|
||||
&pcpu->idle_exit_time);
|
||||
pcpu->timer_idlecancel = 0;
|
||||
mod_timer(&pcpu->cpu_timer, jiffies + usecs_to_jiffies(timer_rate));
|
||||
mod_timer(&pcpu->cpu_timer,
|
||||
jiffies + usecs_to_jiffies(timer_rate));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user