mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-06 10:44:41 +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>
23 lines
352 B
C
23 lines
352 B
C
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <types.h>
|
|
#include <hv_prebuild.h>
|
|
|
|
int32_t main(void)
|
|
{
|
|
int32_t ret = 0;
|
|
|
|
if (!sanitize_vm_config()) {
|
|
printf("VM configuration check fail!\n");
|
|
ret = -1;
|
|
} else {
|
|
printf("VM configuration check pass!\n");
|
|
ret = 0;
|
|
}
|
|
return ret;
|
|
}
|