diff --git a/hypervisor/include/arch/x86/per_cpu.h b/hypervisor/include/arch/x86/per_cpu.h index 7621ac56f..76e63faff 100644 --- a/hypervisor/include/arch/x86/per_cpu.h +++ b/hypervisor/include/arch/x86/per_cpu.h @@ -1,9 +1,15 @@ +/* + * Copyright (C) 2018 Intel Corporation. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + #ifndef PER_CPU_H #define PER_CPU_H + #include #include #include -#include #include #include #include @@ -52,4 +58,5 @@ extern uint64_t pcpu_active_bitmap; /* get percpu data for current pcpu */ #define get_cpu_var(name) per_cpu(name, get_cpu_id()) + #endif