diff options
author | Nico Huber <nico.h@gmx.de> | 2021-03-27 20:03:02 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-04-14 10:38:09 +0000 |
commit | 7cc14ac25d9d40a7c2fc078c248faafbac887a5d (patch) | |
tree | fafe642d5fa78acd01388f77d169af1f9e647ab6 /src/console/printk.c | |
parent | 879ccaa7c581c570dbf86ffcf35239a9d9f19eee (diff) |
Rename do_printk() to printk()
The indirection seems unnecessary. The macros throw features like
`-Wmisleading-indentation` off, though.
Default build for QEMU/Q35 is unchanged.
Change-Id: Ie4eab935a367b5ad6b38225c4973d41d9f70ef10
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51887
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/console/printk.c')
-rw-r--r-- | src/console/printk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/console/printk.c b/src/console/printk.c index 85d9bfb1e6..1ed39cb5ff 100644 --- a/src/console/printk.c +++ b/src/console/printk.c @@ -69,7 +69,7 @@ static void wrap_putchar_cbmemc(unsigned char byte, void *data) __cbmemc_tx_byte(byte); } -int do_vprintk(int msg_level, const char *fmt, va_list args) +int vprintk(int msg_level, const char *fmt, va_list args) { int i, log_this; @@ -98,13 +98,13 @@ int do_vprintk(int msg_level, const char *fmt, va_list args) return i; } -int do_printk(int msg_level, const char *fmt, ...) +int printk(int msg_level, const char *fmt, ...) { va_list args; int i; va_start(args, fmt); - i = do_vprintk(msg_level, fmt, args); + i = vprintk(msg_level, fmt, args); va_end(args); return i; |