dm: Rename vhm_ioctl_defs.h to hsm_ioctl_defs.h

Tracked-On: #6282
Signed-off-by: Shuo A Liu <shuo.a.liu@intel.com>
This commit is contained in:
Shuo A Liu 2021-07-07 10:15:07 +08:00 committed by wenlingz
parent 5a8bfff7a4
commit 82fa2d6355
6 changed files with 9 additions and 9 deletions

View File

@ -29,7 +29,7 @@
#ifndef _ACPI_H_ #ifndef _ACPI_H_
#define _ACPI_H_ #define _ACPI_H_
#include "vhm_ioctl_defs.h" #include "hsm_ioctl_defs.h"
#define SCI_INT 9 #define SCI_INT 9

View File

@ -29,7 +29,7 @@
#ifndef _MEM_H_ #ifndef _MEM_H_
#define _MEM_H_ #define _MEM_H_
#include "types.h" #include "types.h"
#include "vhm_ioctl_defs.h" #include "hsm_ioctl_defs.h"
struct vmctx; struct vmctx;

View File

@ -44,19 +44,19 @@
*/ */
/** /**
* @file vhm_ioctl_defs.h * @file hsm_ioctl_defs.h
* *
* @brief Virtio and Hypervisor Module definition for ioctl to user space * @brief Hypervisor Module definition for ioctl to user space
*/ */
#ifndef _VHM_IOCTL_DEFS_H_ #ifndef _VHM_IOCTL_DEFS_H_
#define _VHM_IOCTL_DEFS_H_ #define _VHM_IOCTL_DEFS_H_
/* Commmon structures for ACRN/VHM/DM */ /* Commmon structures for ACRN/HSM/DM */
#include "acrn_common.h" #include "acrn_common.h"
/* /*
* Commmon IOCTL ID defination for VHM/DM * Commmon IOCTL ID defination for HSM/DM
*/ */
#define _IC_ID(x, y) (((x)<<24)|(y)) #define _IC_ID(x, y) (((x)<<24)|(y))
#define IC_ID 0x43UL #define IC_ID 0x43UL

View File

@ -34,7 +34,7 @@
#include "types.h" #include "types.h"
#include "macros.h" #include "macros.h"
#include "pm.h" #include "pm.h"
#include "vhm_ioctl_defs.h" #include "hsm_ioctl_defs.h"
/* /*
* API version for out-of-tree consumers for making compile time decisions. * API version for out-of-tree consumers for making compile time decisions.

View File

@ -828,7 +828,7 @@ INPUT = custom-doxygen/mainpage.md \
../devicemodel/include/vhost.h \ ../devicemodel/include/vhost.h \
../devicemodel/include/dm.h \ ../devicemodel/include/dm.h \
../devicemodel/include/pci_core.h \ ../devicemodel/include/pci_core.h \
../devicemodel/include/public/vhm_ioctl_defs.h ../devicemodel/include/public/hsm_ioctl_defs.h
# This tag can be used to specify the character encoding of the source files # This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

View File

@ -41,7 +41,7 @@ MANAGER_HEADERS += ../../../devicemodel/include/types.h
MANAGER_HEADERS += ../../../devicemodel/include/pm.h MANAGER_HEADERS += ../../../devicemodel/include/pm.h
MANAGER_HEADERS += ../../../devicemodel/include/dm_string.h MANAGER_HEADERS += ../../../devicemodel/include/dm_string.h
MANAGER_HEADERS += ../../../devicemodel/include/macros.h MANAGER_HEADERS += ../../../devicemodel/include/macros.h
MANAGER_HEADERS += ../../../devicemodel/include/public/vhm_ioctl_defs.h MANAGER_HEADERS += ../../../devicemodel/include/public/hsm_ioctl_defs.h
MANAGER_HEADERS += ../../../devicemodel/include/public/acrn_common.h MANAGER_HEADERS += ../../../devicemodel/include/public/acrn_common.h
GCC_MAJOR=$(shell echo __GNUC__ | $(CC) -E -x c - | tail -n 1) GCC_MAJOR=$(shell echo __GNUC__ | $(CC) -E -x c - | tail -n 1)