lockdown: Fix missing spaces in boot log

Change-Id: I414703c53d356c6a69be515596c178997eed82e3
Signed-off-by: Daniel Gröber <dxld@darkboxed.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41748
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Daniel Gröber 2020-05-26 22:21:27 +02:00 committed by Patrick Georgi
parent 3855a9806e
commit a895344936
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ void boot_device_security_lockdown(void)
printk(BIOS_DEBUG, "'WP_RO only'");
lock_type = CTRLR_WP;
}
printk(BIOS_DEBUG, "using CTRL...\n");
printk(BIOS_DEBUG, " using CTRL...\n");
} else {
if (CONFIG(BOOTMEDIA_LOCK_WHOLE_RO)) {
printk(BIOS_DEBUG, "'readonly'");
@ -37,7 +37,7 @@ void boot_device_security_lockdown(void)
printk(BIOS_DEBUG, "'WP_RO only'");
lock_type = MEDIA_WP;
}
printk(BIOS_DEBUG, "using flash chip...\n");
printk(BIOS_DEBUG, " using flash chip...\n");
}
if (CONFIG(BOOTMEDIA_LOCK_WPRO_VBOOT_RO)) {