soc/intel/baytrail: Remove trailing space in log message
Currently, there is a trailing space in the log message below. > Enabling VR PS2 mode: VNN VCC So, put the space before the word. Change-Id: Ic536d77aa910b1b98a3c2f35d595dee4251b1c18 Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/28525 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
05b1cb8be3
commit
63ebb5bde1
|
@ -55,14 +55,14 @@ void punit_init(void)
|
|||
/* Configure VR low power mode for C0 and above. */
|
||||
if (rid >= RID_C_STEPPING_START && cfg != NULL &&
|
||||
(cfg->vnn_ps2_enable || cfg->vcc_ps2_enable)) {
|
||||
printk(BIOS_DEBUG, "Enabling VR PS2 mode: ");
|
||||
printk(BIOS_DEBUG, "Enabling VR PS2 mode:");
|
||||
if (cfg->vnn_ps2_enable) {
|
||||
reg |= SB_BIOS_CONFIG_PS2_EN_VNN;
|
||||
printk(BIOS_DEBUG, "VNN ");
|
||||
printk(BIOS_DEBUG, " VNN");
|
||||
}
|
||||
if (cfg->vcc_ps2_enable) {
|
||||
reg |= SB_BIOS_CONFIG_PS2_EN_VCC;
|
||||
printk(BIOS_DEBUG, "VCC ");
|
||||
printk(BIOS_DEBUG, " VCC");
|
||||
}
|
||||
printk(BIOS_DEBUG, "\n");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue