mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-09 12:49:24 +00:00
hv: use uint8_t replace "unsigned char"
Since it's typedef in "include/lib/types.h" Tracked-On: #861 Signed-off-by: Li, Fei1 <fei1.li@intel.com>
This commit is contained in:
@@ -139,7 +139,7 @@ struct acrn_vm {
|
||||
uint16_t emul_mmio_regions; /* Number of emulated mmio regions */
|
||||
struct mem_io_node emul_mmio[CONFIG_MAX_EMULATED_MMIO_REGIONS];
|
||||
|
||||
unsigned char GUID[16];
|
||||
uint8_t GUID[16];
|
||||
struct secure_world_control sworld_control;
|
||||
|
||||
/* Secure World's snapshot
|
||||
@@ -174,7 +174,7 @@ struct vm_description {
|
||||
* will be the VM's BSP
|
||||
*/
|
||||
uint16_t *vm_pcpu_ids;
|
||||
unsigned char GUID[16]; /* GUID of the vm will be created */
|
||||
uint8_t GUID[16]; /* GUID of the vm will be created */
|
||||
uint16_t vm_hw_num_cores; /* Number of virtual cores */
|
||||
/* Whether secure world is supported for current VM. */
|
||||
bool sworld_supported;
|
||||
|
@@ -108,7 +108,7 @@ struct profiling_vcpu_pcpu_map {
|
||||
|
||||
struct profiling_vm_info {
|
||||
int32_t vm_id_num;
|
||||
unsigned char guid[16];
|
||||
uint8_t guid[16];
|
||||
char vm_name[16];
|
||||
int32_t num_vcpus;
|
||||
struct profiling_vcpu_pcpu_map cpu_map[MAX_NR_VCPUS];
|
||||
|
Reference in New Issue
Block a user