summaryrefslogtreecommitdiff
path: root/tests/stubs/console.c
blob: b6a75831b54739e270b32b60d5f7de79280d470c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */

#include <console/console.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;
}