mips: no need in architecture specific implementation of do_printk
With the proper configuration flags enabled, do_printk is available from src/console, no need to define it elsewhere. BUG=chrome-os-partner:31438 TEST=with upcoming patches, the urara board coreboot builds fine Change-Id: I82071b4ca1686639c0bd39c63a06b61cb5bf5571 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 69c655537c50274a61cf123b7fc387ec60dd29c7 Original-Change-Id: Ib1e3e5750cdc1adc509b4580a4f24d3ff3b105ee Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/215862 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/8761 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
e8530033b8
commit
5b09816f39
|
@ -36,20 +36,3 @@ void console_tx_flush(void)
|
||||||
uart_tx_flush();
|
uart_tx_flush();
|
||||||
#endif
|
#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;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue