diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-12-05 17:31:22 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-12-05 17:31:22 +0000 |
commit | 732bab00e116db024a1de77dbc656c4c08c649e3 (patch) | |
tree | c15a8f36e6c44e2e6e2d7705f061122c41ca84cb /sys | |
parent | cd3ef786f30d0cdc800839fff99be68eccadfc19 (diff) |
fake bus_space_barrier()
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/include/bus.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/bus.h b/sys/arch/hppa/include/bus.h index b8bba9b072b..f8e3db88738 100644 --- a/sys/arch/hppa/include/bus.h +++ b/sys/arch/hppa/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.2 1998/12/05 15:50:45 mickey Exp $ */ +/* $OpenBSD: bus.h,v 1.3 1998/12/05 17:31:21 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -285,6 +285,9 @@ bus_space_read_multi_4(bus_space_tag_t t, bus_space_handle_t h, #define bus_space_copy_8 #endif +#define bus_space_barrier(t, h, o, l, f) \ + ((void)(t), (void)(h), (void)(o), (void)(o), (void)(l), (void)(f)) + #define BUS_SPACE_BARRIER_READ 1 #define BUS_SPACE_BARRIER_WRITE 2 |