aboutsummaryrefslogtreecommitdiff
path: root/drivers/kvm/kvm.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2007-11-12 20:06:51 -0800
committerAvi Kivity <avi@qumranet.com>2008-01-30 17:53:03 +0200
commit56919c5c97aa07b150311c5c9802af07872ee2b0 (patch)
tree287456543e7f6678c06af77eb0344a615c6e0b97 /drivers/kvm/kvm.h
parent8b0067913d9d0439d4cf3c1f7314ba71fc7b2958 (diff)
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h
index e34e246eafe..c4ad66bb5e0 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 {