Skip to content

Commit 27a6971

Browse files
committed
PM / devfreq: Fix the wrong end with semicolon
Fix the wrong grammar at the end of code line by using semicolon. Cc: stable vger.kernel.org Fixes: 490a421 ("PM / devfreq: Add debugfs support with devfreq_summary file") Signed-off-by: Chanwoo Choi <[email protected]>
1 parent 0aae11b commit 27a6971

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/devfreq/devfreq.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1800,9 +1800,9 @@ static int devfreq_summary_show(struct seq_file *s, void *data)
18001800
#endif
18011801

18021802
mutex_lock(&devfreq->lock);
1803-
cur_freq = devfreq->previous_freq,
1803+
cur_freq = devfreq->previous_freq;
18041804
get_freq_range(devfreq, &min_freq, &max_freq);
1805-
polling_ms = devfreq->profile->polling_ms,
1805+
polling_ms = devfreq->profile->polling_ms;
18061806
mutex_unlock(&devfreq->lock);
18071807

18081808
seq_printf(s,

0 commit comments

Comments
 (0)