aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/arch/mips/early_console.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/arch/mips/early_console.c b/src/arch/mips/early_console.c
index 8f3d907c91..c699abcf6a 100644
--- a/src/arch/mips/early_console.c
+++ b/src/arch/mips/early_console.c
@@ -36,20 +36,3 @@ void console_tx_flush(void)
uart_tx_flush();
#endif
}
-
-int do_printk(int msg_level, const char *fmt, ...)
-{
- va_list args;
- int i;
-
- if (msg_level > console_loglevel)
- return 0;
-
- va_start(args, fmt);
- i = vtxprintf(console_tx_byte, fmt, args);
- va_end(args);
-
- console_tx_flush();
-
- return i;
-}