From 460c2c2483e3d48cbd3cee4d0bfeab87fab658df Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Wed, 20 Feb 2019 12:25:44 -0600 Subject: cpu/intel/common: Add newline to set_feature_ctrl_lock() output Without newline, if IA32_FEATURE_CONTROL already locked, next console line will be concatenated. If run on a multiple CPUs, you get multiple lines concatenated. Change-Id: I5b73ae4cb045973fa3ce07f4d93fda0caadf78eb Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/31532 Tested-by: build bot (Jenkins) Reviewed-by: Elyes HAOUAS Reviewed-by: Angel Pons Reviewed-by: Nico Huber --- src/cpu/intel/common/common_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cpu') diff --git a/src/cpu/intel/common/common_init.c b/src/cpu/intel/common/common_init.c index 0aef3e873c..321c56cf3f 100644 --- a/src/cpu/intel/common/common_init.c +++ b/src/cpu/intel/common/common_init.c @@ -83,7 +83,7 @@ void set_feature_ctrl_lock(void) msr = rdmsr(IA32_FEATURE_CONTROL); if (msr.lo & (1 << 0)) { - printk(BIOS_DEBUG, "IA32_FEATURE_CONTROL already locked; "); + printk(BIOS_DEBUG, "IA32_FEATURE_CONTROL already locked\n"); /* IA32_FEATURE_CONTROL locked. If we set it again we get an * illegal instruction */ -- cgit v1.2.3