mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-02 13:44:00 +00:00
-- update 'vuart' field in 'struct vm' from pointer to instance -- replace MACRO with inline function for vm_vuart, and move it to vm.h -- change vuart_init to void type -- rename struct vuart -->struct acrn_vuart Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> Reviewed-by: Anthony Xu <anthony.xu@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
18 lines
295 B
C
18 lines
295 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef HV_DEBUG_H
|
|
#define HV_DEBUG_H
|
|
|
|
#include <logmsg.h>
|
|
#include <console.h>
|
|
#include <dump.h>
|
|
#include <trace.h>
|
|
#include <sbuf.h>
|
|
#include <npk_log.h>
|
|
|
|
#endif /* HV_DEBUG_H */
|