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