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>
This commit is contained in:
Angel Pons 2020-09-25 01:14:24 +02:00
parent 51eef4ed73
commit f6cf4927e2
1 changed files with 2 additions and 3 deletions

View File

@ -618,7 +618,7 @@ static void set_max_ratio(void)
} }
wrmsr(IA32_PERF_CTL, perf_ctl); 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); ((perf_ctl.lo >> 8) & 0xff) * HASWELL_BCLK);
} }
@ -638,8 +638,7 @@ static void set_energy_perf_bias(u8 policy)
msr.lo |= policy & 0xf; msr.lo |= policy & 0xf;
wrmsr(IA32_ENERGY_PERF_BIAS, msr); wrmsr(IA32_ENERGY_PERF_BIAS, msr);
printk(BIOS_DEBUG, "haswell: energy policy set to %u\n", printk(BIOS_DEBUG, "CPU: energy policy set to %u\n", policy);
policy);
} }
static void configure_mca(void) static void configure_mca(void)