aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/baytrail/romstage/pmc.c
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2018-09-06 09:05:25 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-09-11 12:39:11 +0000
commit63ebb5bde1572e49dfa1c9ef627e486cd01b8163 (patch)
treef04233f893f5325e440c03ea149a8e8c31a781f1 /src/soc/intel/baytrail/romstage/pmc.c
parent05b1cb8be39b90cfb85d9dbeb88e317d9f9acebd (diff)
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>
Diffstat (limited to 'src/soc/intel/baytrail/romstage/pmc.c')
-rw-r--r--src/soc/intel/baytrail/romstage/pmc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/baytrail/romstage/pmc.c b/src/soc/intel/baytrail/romstage/pmc.c
index c2d3ed2b01..b47f7dfe6c 100644
--- a/src/soc/intel/baytrail/romstage/pmc.c
+++ b/src/soc/intel/baytrail/romstage/pmc.c
@@ -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");
}