Commit 511e9ee1 authored by Dave Jones's avatar Dave Jones

[CPUFREQ] CodingStyle nits in cpufreq_stats.c

Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent 851777b7
...@@ -74,7 +74,7 @@ static ssize_t ...@@ -74,7 +74,7 @@ static ssize_t
show_total_trans(struct cpufreq_policy *policy, char *buf) show_total_trans(struct cpufreq_policy *policy, char *buf)
{ {
struct cpufreq_stats *stat = cpufreq_stats_table[policy->cpu]; struct cpufreq_stats *stat = cpufreq_stats_table[policy->cpu];
if(!stat) if (!stat)
return 0; return 0;
return sprintf(buf, "%d\n", return sprintf(buf, "%d\n",
cpufreq_stats_table[stat->cpu]->total_trans); cpufreq_stats_table[stat->cpu]->total_trans);
...@@ -86,7 +86,7 @@ show_time_in_state(struct cpufreq_policy *policy, char *buf) ...@@ -86,7 +86,7 @@ show_time_in_state(struct cpufreq_policy *policy, char *buf)
ssize_t len = 0; ssize_t len = 0;
int i; int i;
struct cpufreq_stats *stat = cpufreq_stats_table[policy->cpu]; struct cpufreq_stats *stat = cpufreq_stats_table[policy->cpu];
if(!stat) if (!stat)
return 0; return 0;
cpufreq_stats_update(stat->cpu); cpufreq_stats_update(stat->cpu);
for (i = 0; i < stat->state_num; i++) { for (i = 0; i < stat->state_num; i++) {
...@@ -104,7 +104,7 @@ show_trans_table(struct cpufreq_policy *policy, char *buf) ...@@ -104,7 +104,7 @@ show_trans_table(struct cpufreq_policy *policy, char *buf)
int i, j; int i, j;
struct cpufreq_stats *stat = cpufreq_stats_table[policy->cpu]; struct cpufreq_stats *stat = cpufreq_stats_table[policy->cpu];
if(!stat) if (!stat)
return 0; return 0;
cpufreq_stats_update(stat->cpu); cpufreq_stats_update(stat->cpu);
len += snprintf(buf + len, PAGE_SIZE - len, " From : To\n"); len += snprintf(buf + len, PAGE_SIZE - len, " From : To\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment