repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/google/skyrim: Enable ACPI tables
[coreboot.git]
/
util
/
uio_usbdebug
/
console
/
printk.c
blob
e0aa20169e18355697437829f519924501586c6a
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <stdio.h>
4
#include <stdarg.h>
5
#include <console/console.h>
6
7
int
printk
(
int
msg_level
,
const char
*
const
fmt
, ...)
8
{
9
va_list
args
;
10
int
i
;
11
12
va_start
(
args
,
fmt
);
13
i
=
vfprintf
(
stderr
,
fmt
,
args
);
14
va_end
(
args
);
15
16
return
i
;
17
}