Files
acrn-hypervisor/hypervisor/arch/riscv/logmsg.c
Jian Jun Chen 9d6ec75628 [FIXME] hv: riscv: add a stub do_logmsg for build
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>
2025-09-23 11:30:38 +08:00

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;
}