HV: vm_load: rename vboot_info.h to vboot.h

vboot_info.h declares vm loader function also, so rename the file name to
vboot.h;

Tracked-On: #6323

Signed-off-by: Victor Sun <victor.sun@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
Victor Sun 2021-08-03 20:44:38 +08:00 committed by wenlingz
parent 9b632c0e4b
commit 3124018917
6 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@
#include <asm/pgtable.h>
#include <asm/mmu.h>
#include <logmsg.h>
#include <vboot_info.h>
#include <vboot.h>
#include <asm/board.h>
#include <asm/sgx.h>
#include <sbuf.h>

View File

@ -10,7 +10,7 @@
#include <asm/guest/ept.h>
#include <asm/mmu.h>
#include <boot.h>
#include <vboot_info.h>
#include <vboot.h>
#include <vacpi.h>
#include <efi_mmap.h>
#include <errno.h>

View File

@ -5,7 +5,7 @@
*/
#include <asm/guest/vm.h>
#include <vboot_info.h>
#include <vboot.h>
/**
* @pre vm != NULL

View File

@ -18,7 +18,7 @@
#include <asm/guest/ept.h>
#include <reloc.h>
#include <logmsg.h>
#include <vboot_info.h>
#include <vboot.h>
#include <vacpi.h>
#define DBG_LEVEL_BOOT 6U

View File

@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef VBOOT_INFO_H
#ifndef VBOOT_H
#define VBOOT_INFO_H
#define VBOOT_H
int32_t init_vm_boot_info(struct acrn_vm *vm);
void load_sw_module(struct acrn_vm *vm, struct sw_module_info *sw_module);
@ -19,4 +19,4 @@ int32_t vm_rawimage_loader(struct acrn_vm *vm);
#endif
#endif /* end of include guard: VBOOT_INFO_H */
#endif /* end of include guard: VBOOT_H */

View File

@ -5,7 +5,7 @@
*/
#include <asm/guest/vm.h>
#include <vboot_info.h>
#include <vboot.h>
#include <errno.h>
#include <logmsg.h>