2020-07-07 16:38:27 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
|
|
|
#include <console/console.h>
|
2020-10-09 16:02:46 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2020-07-07 16:38:27 +02:00
|
|
|
|
2021-03-27 20:03:02 +01:00
|
|
|
int printk(int msg_level, const char *fmt, ...)
|
2020-07-07 16:38:27 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-03-27 20:03:02 +01:00
|
|
|
int vprintk(int msg_level, const char *fmt, va_list args)
|
2020-07-07 16:38:27 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2020-10-09 16:02:46 +02:00
|
|
|
|
|
|
|
int console_log_level(int msg_level)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|