acrn-hypervisor/hypervisor/release/trace.c
Geoffroy Van Cutsem 8b16be9185 Remove "All rights reserved" string headers
Many of the license and Intel copyright headers include the "All rights
reserved" string. It is not relevant in the context of the BSD-3-Clause
license that the code is released under. This patch removes those strings
throughout the code (hypervisor, devicemodel and misc).

Tracked-On: #7254
Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
2022-04-06 13:21:02 +08:00

20 lines
496 B
C

/*
* Copyright (C) 2018 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)
{
}