kvm: vmx: fix coccinelle warnings

This fixes the following coccinelle warning:

WARNING: return of 0/1 in function 'vmx_need_emulation_on_page_fault'
with return type bool

Return false instead of 0.

Signed-off-by: Yi Wang <wang.yi59@zte.com.cn>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Yi Wang 2019-07-15 12:35:17 +08:00 committed by Paolo Bonzini
parent fd4198bf17
commit 9481b7f10c
1 changed files with 1 additions and 1 deletions

View File

@ -7453,7 +7453,7 @@ static int enable_smi_window(struct kvm_vcpu *vcpu)
static bool vmx_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
{
return 0;
return false;
}
static __init int hardware_setup(void)