diff options
author | Joe Perches <joe@perches.com> | 2007-11-13 05:06:51 +0100 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 16:53:03 +0100 |
commit | 56919c5c97aa07b150311c5c9802af07872ee2b0 (patch) | |
tree | 287456543e7f6678c06af77eb0344a615c6e0b97 /drivers/kvm/kvm.h | |
parent | KVM: Portability: Make kvm_vcpu_ioctl_translate arch dependent (diff) | |
download | linux-56919c5c97aa07b150311c5c9802af07872ee2b0.tar.xz linux-56919c5c97aa07b150311c5c9802af07872ee2b0.zip |
KVM: Remove ptr comparisons to 0
Fix sparse warnings "Using plain integer as NULL pointer"
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/kvm.h')
-rw-r--r-- | drivers/kvm/kvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h index e34e246eafec..c4ad66bb5e08 100644 --- a/drivers/kvm/kvm.h +++ b/drivers/kvm/kvm.h @@ -398,7 +398,7 @@ static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm) static inline int irqchip_in_kernel(struct kvm *kvm) { - return pic_irqchip(kvm) != 0; + return pic_irqchip(kvm) != NULL; } struct descriptor_table { |