mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-02 05:34:04 +00:00
Replace the BSD-3-Clause boiler plate license text with an SPDX tag. Fixes: #189 Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
22 lines
372 B
C
22 lines
372 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 <serial.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 */
|