mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-16 18:57:26 +00:00
move the debug related command handle into debug/dbg_cmd.c; so release build will not include that. Tracked-On: #2170 Signed-off-by: Minggui Cao <minggui.cao@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
23 lines
448 B
C
23 lines
448 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <hypervisor.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 uint8_t intx_pin)
|
|
{
|
|
return false;
|
|
}
|