summaryrefslogtreecommitdiff
path: root/sys/arch/hppa64/dev
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2011-04-07 15:30:17 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2011-04-07 15:30:17 +0000
commit470f59fa3f11b7317fc5907cfef6043f2104bcc6 (patch)
tree50aedec19587d2927b807e6719da0022055c56df /sys/arch/hppa64/dev
parent1d2ed5cc87538f3c2a6389c586a609a8b73610b7 (diff)
Do not use NULL in integer comparisons. No functional change.
ok matthew@ tedu@, also eyeballed by at least krw@ oga@ kettenis@ jsg@
Diffstat (limited to 'sys/arch/hppa64/dev')
-rw-r--r--sys/arch/hppa64/dev/astro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/dev/astro.c b/sys/arch/hppa64/dev/astro.c
index dc7e41cd8d4..d6a5b4572c7 100644
--- a/sys/arch/hppa64/dev/astro.c
+++ b/sys/arch/hppa64/dev/astro.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: astro.c,v 1.4 2010/08/07 03:50:01 krw Exp $ */
+/* $OpenBSD: astro.c,v 1.5 2011/04/07 15:30:15 miod Exp $ */
/*
* Copyright (c) 2007 Mark Kettenis
@@ -640,7 +640,7 @@ iommu_iomap_insert_page(struct iommu_map_state *ims, vaddr_t va, paddr_t pa)
e->ipe_pa = pa;
e->ipe_va = va;
- e->ipe_dva = NULL;
+ e->ipe_dva = 0;
e = SPLAY_INSERT(iommu_page_tree, &ipm->ipm_tree, e);