blob: 0f1dc2472573963fdcaca75aa9b14b5122681730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h>
#include <stdarg.h>
#include <stdio.h>
int do_printk(int msg_level, const char *fmt, ...)
{
return 0;
}
int do_vprintk(int msg_level, const char *fmt, va_list args)
{
return 0;
}
int console_log_level(int msg_level)
{
return 0;
}
|