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/hardkernel/odroid-h4: Correct number of jacks in hda_verb.c
[coreboot.git]
/
src
/
vendorcode
/
mediatek
/
mt8192
/
include
/
print.h
blob
78fc840d6fde2d460d832685db6a99b1b41fbc5f
1
/* SPDX-License-Identifier: BSD-3-Clause */
2
3
#ifndef PRINT_H
4
#define PRINT_H
5
6
#include <console/console.h>
7
8
//int print(const char *fmt, ...);
9
#define print(_x_...) printk(BIOS_INFO, _x_)
10
#define printf print
11
12
#endif