mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-05 23:57:10 +00:00
fix "use of single line comments(s) //"
Replace "//" with '/*','*/' couples.
V1->V2:
Correct comment "Tracked-On" format
V2->V3:
Remove "/* ==...===*/" comment
Tracked-On: #861
Signed-off-by: Huihuang Shi <huihuang.shi@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
@@ -49,7 +49,7 @@ struct per_cpu_region {
|
||||
char logbuf[LOG_MESSAGE_MAX_SIZE];
|
||||
uint32_t lapic_id;
|
||||
struct smp_call_info_data smp_call_info;
|
||||
} __aligned(CPU_PAGE_SIZE); //per_cpu_region size aligned with CPU_PAGE_SIZE
|
||||
} __aligned(CPU_PAGE_SIZE); /* per_cpu_region size aligned with CPU_PAGE_SIZE */
|
||||
|
||||
extern struct per_cpu_region *per_cpu_data_base_ptr;
|
||||
extern uint16_t phys_cpu_num;
|
||||
|
||||
@@ -486,7 +486,8 @@ int64_t hcall_save_restore_sworld_ctx(struct vcpu *vcpu);
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/ // End of trusty_hypercall
|
||||
*/
|
||||
/* End of trusty_hypercall */
|
||||
|
||||
/**
|
||||
* @brief set upcall notifier vector
|
||||
@@ -505,6 +506,7 @@ int32_t hcall_set_callback_vector(struct vm *vm, uint64_t param);
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/ // End of acrn_hypercall
|
||||
*/
|
||||
/* End of acrn_hypercall */
|
||||
|
||||
#endif /* HYPERCALL_H*/
|
||||
|
||||
Reference in New Issue
Block a user