mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-30 12:44:07 +00:00
This patch does: - remove the unused API declaration - fix use of uninitialized variable in instr_emul.c Tracked-On: #861 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
13 lines
372 B
C
13 lines
372 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <hypervisor.h>
|
|
|
|
void init_logmsg(__unused uint32_t flags) {}
|
|
void do_logmsg(__unused uint32_t severity, __unused const char *fmt, ...) {}
|
|
void printf(__unused const char *fmt, ...) {}
|
|
void vprintf(__unused const char *fmt, __unused va_list args) {}
|