1
0
mirror of https://github.com/projectacrn/acrn-hypervisor.git synced 2025-05-03 14:06:54 +00:00

hv: include: remove name starts with underscore

Remove name starts with underscore for HV_CONFIG

Tracked-On: 
Signed-off-by: Li, Fei1 <fei1.li@intel.com>
This commit is contained in:
Li, Fei1 2018-11-27 18:41:36 +08:00 committed by lijinxia
parent 0100b5a2e1
commit c200c98405

View File

@ -21,7 +21,7 @@ class Acrn_config(kconfiglib.Kconfig):
def write_autoconf(self, filename,
header="/* Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib) */\n"):
guard_begin = "#ifndef __HV_KCONFIG__\n#define __HV_KCONFIG__\n"
guard_begin = "#ifndef HV_KCONFIG\n#define HV_KCONFIG\n"
guard_end = "#endif"
with open(filename, "w") as f: