mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-05 23:57:10 +00:00
HV: Remove misuesed __unused
There are some __unused attached to variables. But, those variables are used by the function actually. This patch remove them. No functional change. Signed-off-by: Kaige Fu <kaige.fu@intel.com> Acked-by: Anthony Xu <anthony.xu@intel.com>
This commit is contained in:
@@ -201,7 +201,7 @@ int vmexit_handler(struct vcpu *vcpu)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int unhandled_vmexit_handler(__unused struct vcpu *vcpu)
|
||||
static int unhandled_vmexit_handler(struct vcpu *vcpu)
|
||||
{
|
||||
pr_fatal("Error: Unhandled VM exit condition from guest at 0x%016llx ",
|
||||
exec_vmread(VMX_GUEST_RIP));
|
||||
|
||||
Reference in New Issue
Block a user