soc/mediatek/mt8196: Add MT6685 Clock IC driver
[coreboot2.git] / src / vendorcode / mediatek / mt8195 / 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