mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-03 05:56:57 +00:00
cleanup release folder, only include some necessary header files,doesn't include hypervisor.h Tracked-On: #1842 Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> modified: release/console.c modified: release/dump.c modified: release/hypercall.c modified: release/logmsg.c modified: release/npk_log.c modified: release/profiling.c modified: release/trace.c modified: release/vuart.c
24 lines
460 B
C
24 lines
460 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <types.h>
|
|
#include <vm.h>
|
|
|
|
void vuart_init(__unused struct acrn_vm *vm) {}
|
|
|
|
struct acrn_vuart *vuart_console_active(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void vuart_console_tx_chars(__unused struct acrn_vuart *vu) {}
|
|
void vuart_console_rx_chars(__unused struct acrn_vuart *vu) {}
|
|
|
|
bool hv_used_dbg_intx(__unused uint32_t intx_pin)
|
|
{
|
|
return false;
|
|
}
|