summaryrefslogtreecommitdiff
path: root/sys/arch/hppa64/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2009-07-30 21:39:55 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2009-07-30 21:39:55 +0000
commit4078b7f9881c3fd909b825e61d23f640ba90dca5 (patch)
tree19a52cdf3ce2a3f089012ccf6000d3c93e364cbe /sys/arch/hppa64/include
parentfe9ba901e1c6eddcdc81f086b39a0601fba19162 (diff)
Make sure the BUS_SPACE_BARRIER_xxx constants are all non-zero and can be
or'ed together, even on platforms where bus_space_barrier() ignores the barrier argument yet.
Diffstat (limited to 'sys/arch/hppa64/include')
-rw-r--r--sys/arch/hppa64/include/bus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa64/include/bus.h b/sys/arch/hppa64/include/bus.h
index 5ac5e3f0de9..f2bc61ae1a2 100644
--- a/sys/arch/hppa64/include/bus.h
+++ b/sys/arch/hppa64/include/bus.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bus.h,v 1.4 2009/05/31 17:42:13 miod Exp $ */
+/* $OpenBSD: bus.h,v 1.5 2009/07/30 21:39:54 miod Exp $ */
/*
* Copyright (c) 2005 Michael Shalayeff
@@ -166,8 +166,8 @@ typedef struct hppa64_bus_space_tag *bus_space_tag_t;
#define bus_space_free(t,h,c) \
(((t)->hbt_free)((t)->hbt_cookie,(h),(c)))
-#define BUS_SPACE_BARRIER_READ 0
-#define BUS_SPACE_BARRIER_WRITE 1
+#define BUS_SPACE_BARRIER_READ 0x01
+#define BUS_SPACE_BARRIER_WRITE 0x02
#define bus_space_barrier(t,h,o,l,op) \
((t)->hbt_barrier((t)->hbt_cookie, (h), (o), (l), (op)))