summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2022-01-11 12:44:38 -0700
committerFelix Held <felix-coreboot@felixheld.de>2022-01-13 15:25:43 +0000
commit41a1a9e03c681da565d00c0a9fff617c9f45308d (patch)
treede05c7681c8cb9675f66906117bdb198cf53f4fb /src/include
parent727a84b9a77d2132537bd63f72fb33848f4f99a5 (diff)
downloadcoreboot-41a1a9e03c681da565d00c0a9fff617c9f45308d.tar.gz
coreboot-41a1a9e03c681da565d00c0a9fff617c9f45308d.tar.bz2
coreboot-41a1a9e03c681da565d00c0a9fff617c9f45308d.zip
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')
-rw-r--r--src/include/console/cbmem_console.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/console/cbmem_console.h b/src/include/console/cbmem_console.h
index 3eb278db98e7..3477a06b0a9e 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