repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/intel/xeon_sp/spr: Drop microcode constraints
[coreboot2.git]
/
src
/
include
/
console
/
vtxprintf.h
blob
4a611615277fcf525ce23ca2c5b523c8d8e5d1a2
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef __CONSOLE_VTXPRINTF_H
4
#define __CONSOLE_VTXPRINTF_H
5
6
#include <stdarg.h>
7
8
int
vtxprintf
(
void
(*
tx_byte
)(
unsigned char
byte
,
void
*
data
),
9
const char
*
fmt
,
va_list
args
,
void
*
data
);
10
11
#endif