summaryrefslogtreecommitdiffstats
path: root/tests/stubs/console.c
blob: bd40209716387d05a395cf74bb0c42beb64cc3c2 (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 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;
}