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/include/console/cbmem_console.h | |
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/include/console/cbmem_console.h')
-rw-r--r-- | src/include/console/cbmem_console.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/console/cbmem_console.h b/src/include/console/cbmem_console.h index 3eb278db98..3477a06b0a 100644 --- a/src/include/console/cbmem_console.h +++ b/src/include/console/cbmem_console.h @@ -19,5 +19,5 @@ static inline void __cbmemc_init(void) {} static inline void __cbmemc_tx_byte(u8 data) {} #endif -void cbmem_dump_console(void); +void cbmem_dump_console_to_uart(void); #endif |