diff options
author | 2000-06-15 19:05:09 +0000 | |
---|---|---|
committer | 2000-06-15 19:05:09 +0000 | |
commit | 917267b74216af3d9b5ce43ef848af3212482fd4 (patch) | |
tree | 7d0ff0bface27af8ad306ade5fd23296380f0fb5 | |
parent | RSA goes in tree for next our next release, as it will be after (diff) | |
download | wireguard-openbsd-917267b74216af3d9b5ce43ef848af3212482fd4.tar.xz wireguard-openbsd-917267b74216af3d9b5ce43ef848af3212482fd4.zip |
add BUS_DMA_COHERENT, fix BUS_DMAMEM_NOSYNC
-rw-r--r-- | sys/arch/hppa/include/bus.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/bus.h b/sys/arch/hppa/include/bus.h index 44a7cfdc93d..809b6f03310 100644 --- a/sys/arch/hppa/include/bus.h +++ b/sys/arch/hppa/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.11 2000/01/29 03:12:12 mickey Exp $ */ +/* $OpenBSD: bus.h,v 1.12 2000/06/15 19:05:09 mickey Exp $ */ /* * Copyright (c) 1998,1999 Michael Shalayeff @@ -290,7 +290,8 @@ extern const struct hppa_bus_space_tag hppa_bustag; #define BUS_DMA_WAITOK 0x00 #define BUS_DMA_NOWAIT 0x01 #define BUS_DMA_ALLOCNOW 0x02 -#define BUS_DMAMEM_NOSYNC 0x04 +#define BUS_DMA_COHERENT 0x04 +#define BUS_DMAMEM_NOSYNC 0x10 /* Forwards needed by prototypes below. */ struct mbuf; |