mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-30 12:44:07 +00:00
Modified the copyright year range in code, and corrected "int32_tel" into "Intel" in two "hypervisor/include/debug/profiling.h" and "hypervisor/include/debug/profiling_internal.h". Tracked-On: #7559 Signed-off-by: Ziheng Li <ziheng.li@intel.com>
20 lines
501 B
C
20 lines
501 B
C
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <types.h>
|
|
|
|
void TRACE_2L(__unused uint32_t evid, __unused uint64_t e, __unused uint64_t f) {}
|
|
|
|
void TRACE_4I(__unused uint32_t evid, __unused uint32_t a, __unused uint32_t b,
|
|
__unused uint32_t c, __unused uint32_t d)
|
|
{
|
|
}
|
|
|
|
void TRACE_6C(__unused uint32_t evid, __unused uint8_t a1, __unused uint8_t a2,
|
|
__unused uint8_t a3, __unused uint8_t a4, __unused uint8_t b1, __unused uint8_t b2)
|
|
{
|
|
}
|