summaryrefslogtreecommitdiff
path: root/src/security
diff options
context:
space:
mode:
authorDaniel Gröber <dxld@darkboxed.org>2020-05-26 22:21:27 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-06-02 07:35:43 +0000
commita895344936594402175b2f4321b0e1a9d5dbfe7b (patch)
tree672039f387df24daf8866d2b72adb194b10e7ce3 /src/security
parent3855a9806e5dd4ed47af99f0d2efb4d9a45b6e0a (diff)
downloadcoreboot-a895344936594402175b2f4321b0e1a9d5dbfe7b.tar.xz
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>
Diffstat (limited to 'src/security')
-rw-r--r--src/security/lockdown/lockdown.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/security/lockdown/lockdown.c b/src/security/lockdown/lockdown.c
index 81478cc044..c2e2ac3501 100644
--- a/src/security/lockdown/lockdown.c
+++ b/src/security/lockdown/lockdown.c
@@ -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)) {