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