hwmon: (coretemp) Add missing newline to dev_warn() message

Add missing newline to dev_warn() message string. This is more of an issue
with older kernels that don't automatically add a newline if it was missing
from the end of the previous line.

Signed-off-by: Dean Nelson <dnelson@redhat.com>
Cc: stable@kernel.org
Signed-off-by: Jean Delvare <khali@linux-fr.org>

authored by Dean Nelson and committed by Jean Delvare 4d7a5644 fcc6a746

+1 -1
+1 -1
drivers/hwmon/coretemp.c
··· 228 228 if (err) { 229 229 dev_warn(dev, 230 230 "Unable to access MSR 0xEE, for Tjmax, left" 231 - " at default"); 231 + " at default\n"); 232 232 } else if (eax & 0x40000000) { 233 233 tjmax = tjmax_ee; 234 234 }