diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-02-09 11:38:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 12:14:07 -0500 |
commit | 8b6d44c7bde7f927b7b70e9f56c22c66c0066277 (patch) | |
tree | 7246847130b1768908c7c87fef2dc99028e29300 /drivers/kvm/vmx.c | |
parent | 5b71bddb78df5e292ae90f7603a996e51b3ecb88 (diff) |
[PATCH] kvm: NULL noise removal
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/kvm/vmx.c')
-rw-r--r-- | drivers/kvm/vmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index 54c35c0b3181..27e05a77e21a 100644 --- a/drivers/kvm/vmx.c +++ b/drivers/kvm/vmx.c | |||
@@ -98,7 +98,7 @@ static struct vmx_msr_entry *find_msr_entry(struct kvm_vcpu *vcpu, u32 msr) | |||
98 | for (i = 0; i < vcpu->nmsrs; ++i) | 98 | for (i = 0; i < vcpu->nmsrs; ++i) |
99 | if (vcpu->guest_msrs[i].index == msr) | 99 | if (vcpu->guest_msrs[i].index == msr) |
100 | return &vcpu->guest_msrs[i]; | 100 | return &vcpu->guest_msrs[i]; |
101 | return 0; | 101 | return NULL; |
102 | } | 102 | } |
103 | 103 | ||
104 | static void vmcs_clear(struct vmcs *vmcs) | 104 | static void vmcs_clear(struct vmcs *vmcs) |