mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-14 19:02:02 +00:00
This is just for temporary build and should be reverted when common debug module is integrated. Tracked-On: #8791 Signed-off-by: Jian Jun Chen <jian.jun.chen@intel.com> Acked-by: Wang, Yu1 <yu1.wang@intel.com>
20 lines
460 B
C
20 lines
460 B
C
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <types.h>
|
|
|
|
/* FIXME: Temporary RISC-V build workaround
|
|
* This file provides pr_xxx function stubs to satisfy existing
|
|
* code dependencies. Remove this file and migrate to the common
|
|
* logmsg.c implementation once the debug module is properly
|
|
* integrated.
|
|
*/
|
|
void do_logmsg(uint32_t severity, const char *fmt, ...)
|
|
{
|
|
(void)severity;
|
|
(void)fmt;
|
|
}
|