diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-06-15 19:05:10 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-06-15 19:05:10 +0000 |
commit | 2b58a9bca85524f8a95fd7c826a4975b4bf63476 (patch) | |
tree | fe0021d34aa33549afad0daabfdaa850976311c4 /sys/arch/hppa | |
parent | c6de100849949dd45bfecf16721a819e9328c6b6 (diff) |
add BUS_DMA_COHERENT, fix BUS_DMAMEM_NOSYNC
Diffstat (limited to 'sys/arch/hppa')
-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; |