aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-09-25 01:14:24 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-09-27 22:45:42 +0000
commitf6cf4927e2edf879929338b4889b6f1915d7a5c1 (patch)
tree514232c161da2293a34484adcf8afcea8bd0faa4 /src/cpu/intel
parent51eef4ed736684704d5a4c0d7fdc407f0a7d0c86 (diff)
cpu/intel/haswell/haswell_init.c: Align printk's with Broadwell
Change-Id: I09f4fc5af28b20663b87d18852d585121feaab09 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45722 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/cpu/intel')
-rw-r--r--src/cpu/intel/haswell/haswell_init.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cpu/intel/haswell/haswell_init.c b/src/cpu/intel/haswell/haswell_init.c
index 5f3debbda4..ac5dec6277 100644
--- a/src/cpu/intel/haswell/haswell_init.c
+++ b/src/cpu/intel/haswell/haswell_init.c
@@ -618,7 +618,7 @@ static void set_max_ratio(void)
}
wrmsr(IA32_PERF_CTL, perf_ctl);
- printk(BIOS_DEBUG, "haswell: frequency set to %d\n",
+ printk(BIOS_DEBUG, "CPU: frequency set to %d\n",
((perf_ctl.lo >> 8) & 0xff) * HASWELL_BCLK);
}
@@ -638,8 +638,7 @@ static void set_energy_perf_bias(u8 policy)
msr.lo |= policy & 0xf;
wrmsr(IA32_ENERGY_PERF_BIAS, msr);
- printk(BIOS_DEBUG, "haswell: energy policy set to %u\n",
- policy);
+ printk(BIOS_DEBUG, "CPU: energy policy set to %u\n", policy);
}
static void configure_mca(void)