mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-10 04:28:31 +00:00
hv: add a missing semicolon in vmexit.c
Signed-off-by: Binbin Wu <binbin.wu@intel.com> Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com>
This commit is contained in:
parent
6788c09c39
commit
a1923dd6e0
@ -265,7 +265,7 @@ int cr_access_vmexit_handler(struct vcpu *vcpu)
|
||||
&vcpu->arch_vcpu.contexts[vcpu->arch_vcpu.cur_context];
|
||||
int idx = VM_EXIT_CR_ACCESS_REG_IDX(vcpu->arch_vcpu.exit_qualification);
|
||||
|
||||
ASSERT(idx>=0 && idx<=15, "index out of range")
|
||||
ASSERT(idx>=0 && idx<=15, "index out of range");
|
||||
regptr = cur_context->guest_cpu_regs.longs + idx;
|
||||
|
||||
switch ((VM_EXIT_CR_ACCESS_ACCESS_TYPE
|
||||
|
Loading…
Reference in New Issue
Block a user