diff options
author | Raul E Rangel <rrangel@chromium.org> | 2018-07-17 14:44:43 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-07-18 12:20:13 +0000 |
commit | 3a59174cf02c8c0afd8eb547f5325788cd3537ea (patch) | |
tree | dbaa0effebd34166d07f7d29be1b9dfc9f8191d6 /src | |
parent | 6d4a060bba907ca29b2c69fda9a4ae3e3c73fc44 (diff) | |
download | coreboot-3a59174cf02c8c0afd8eb547f5325788cd3537ea.tar.xz |
security/vboot: fix typo
BUG=none
TEST=none
Change-Id: I7027abee66ccdf9b2d37df60ca7f4dbbbae2f9e4
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Reviewed-on: https://review.coreboot.org/27517
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/security/vboot/vboot_logic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/vboot/vboot_logic.c b/src/security/vboot/vboot_logic.c index 9710ae2e7c..a0e6a3210d 100644 --- a/src/security/vboot/vboot_logic.c +++ b/src/security/vboot/vboot_logic.c @@ -357,7 +357,7 @@ void verstage_main(void) return; } - printk(BIOS_INFO, "Reboot reqested (%x)\n", rv); + printk(BIOS_INFO, "Reboot requested (%x)\n", rv); save_if_needed(&ctx); vboot_reboot(); } |