Skip to content

Commit

Permalink
PM / devfreq: Fix the wrong end with semicolon
Browse files Browse the repository at this point in the history
[ Upstream commit 27a6971 ]

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 <cw00.choi@samsung.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
chanwoochoi authored and gregkh committed Sep 3, 2020
1 parent 6eacb46 commit ce9d78b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/devfreq/devfreq.c
Expand Up @@ -1690,9 +1690,9 @@ static int devfreq_summary_show(struct seq_file *s, void *data)
#endif

mutex_lock(&devfreq->lock);
cur_freq = devfreq->previous_freq,
cur_freq = devfreq->previous_freq;
get_freq_range(devfreq, &min_freq, &max_freq);
polling_ms = devfreq->profile->polling_ms,
polling_ms = devfreq->profile->polling_ms;
mutex_unlock(&devfreq->lock);

seq_printf(s,
Expand Down

0 comments on commit ce9d78b

Please sign in to comment.