mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-29 12:14:13 +00:00
The current hierarchy : CONSOLE --> SERIAL -->UART DRIVER This patch remove SERIAL layer, that is console will call UART driver directly, change it to: CONSOLE --> UART DRIVER Remove some related data structures and registration and callback. Cleanup vuart.c Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
21 lines
352 B
C
21 lines
352 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 <vuart.h>
|
|
#include <console.h>
|
|
#include <dump.h>
|
|
#include <trace.h>
|
|
#include <shell.h>
|
|
#include <sbuf.h>
|
|
#include <assert.h>
|
|
#include <printf.h>
|
|
|
|
#endif /* HV_DEBUG_H */
|