diff options
author | Raul E Rangel <rrangel@chromium.org> | 2022-01-11 12:44:38 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-01-13 15:25:43 +0000 |
commit | 41a1a9e03c681da565d00c0a9fff617c9f45308d (patch) | |
tree | de05c7681c8cb9675f66906117bdb198cf53f4fb /src/security/vboot/vboot_common.c | |
parent | 727a84b9a77d2132537bd63f72fb33848f4f99a5 (diff) |
console/cbmem_console: Rename cbmem_dump_console
This function actually dumps cbmem to the UART. This change renames the
function to make that clear.
BUG=b:213828947
TEST=Build guybrush
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: Icc314c530125e5303a06b92aab48c1e1122fd18c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61010
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/security/vboot/vboot_common.c')
-rw-r--r-- | src/security/vboot/vboot_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/vboot/vboot_common.c b/src/security/vboot/vboot_common.c index 87f382fb28..c557f25c14 100644 --- a/src/security/vboot/vboot_common.c +++ b/src/security/vboot/vboot_common.c @@ -60,7 +60,7 @@ void __weak vboot_platform_prepare_reboot(void) void vboot_reboot(void) { if (CONFIG(CONSOLE_CBMEM_DUMP_TO_UART)) - cbmem_dump_console(); + cbmem_dump_console_to_uart(); vboot_platform_prepare_reboot(); board_reset(); } |