blob: bd40209716387d05a395cf74bb0c42beb64cc3c2 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h>
#include <stdarg.h>
#include <stdio.h>
int printk(int msg_level, const char *fmt, ...)
{
return 0;
}
int vprintk(int msg_level, const char *fmt, va_list args)
{
return 0;
}
int console_log_level(int msg_level)
{
return 0;
}