diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-07-30 21:39:55 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-07-30 21:39:55 +0000 |
commit | 4078b7f9881c3fd909b825e61d23f640ba90dca5 (patch) | |
tree | 19a52cdf3ce2a3f089012ccf6000d3c93e364cbe /sys/arch/hppa | |
parent | fe9ba901e1c6eddcdc81f086b39a0601fba19162 (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/hppa')
-rw-r--r-- | sys/arch/hppa/include/bus.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/include/bus.h b/sys/arch/hppa/include/bus.h index 4989eaf7639..9502f88c7d3 100644 --- a/sys/arch/hppa/include/bus.h +++ b/sys/arch/hppa/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.27 2009/05/31 17:42:11 miod Exp $ */ +/* $OpenBSD: bus.h,v 1.28 2009/07/30 21:39:54 miod Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -283,8 +283,8 @@ extern const struct hppa_bus_space_tag hppa_bustag; #define bus_space_copy_8(t, h1, o1, h2, o2, c) \ (((t)->hbt_cp_8)((t)->hbt_cookie, (h1), (o1), (h2), (o2), (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))) |