diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-10-09 17:21:07 +0530 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2017-10-17 15:56:06 +0800 |
commit | d344f3138a473b99f09041a1e6ece9f3b8953858 (patch) | |
tree | 0cad2054b794d6d8c37745ee2196af33f6babd4d | |
parent | 2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e (diff) |
thermal/intel_powerclamp: pr_err()/pr_info() strings should end with newlines
pr_err()/pr_info() messages should end with a new-line to avoid
other messages being concatenated.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
-rw-r--r-- | drivers/thermal/intel_powerclamp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/thermal/intel_powerclamp.c b/drivers/thermal/intel_powerclamp.c index d718cd179ddb..4540e892b61d 100644 --- a/drivers/thermal/intel_powerclamp.c +++ b/drivers/thermal/intel_powerclamp.c @@ -675,13 +675,13 @@ static int __init powerclamp_probe(void) { if (!x86_match_cpu(intel_powerclamp_ids)) { - pr_err("CPU does not support MWAIT"); + pr_err("CPU does not support MWAIT\n"); return -ENODEV; } /* The goal for idle time alignment is to achieve package cstate. */ if (!has_pkg_state_counter()) { - pr_info("No package C-state available"); + pr_info("No package C-state available\n"); return -ENODEV; } |