diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-05-13 19:31:33 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-05-13 19:31:33 +0000 |
commit | 23384bc8d532820b5cad1d8660f3ee86a97e900f (patch) | |
tree | d10e34787e89a78c8246ab9685040c27068e364d /sys | |
parent | 99f32306f2999c0857fb0e114de3b140b2931294 (diff) |
add BUS_DMA_24BIT flag (for braindead lance implementations)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/include/bus.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/bus.h b/sys/arch/sparc64/include/bus.h index 3e42fad0917..a01850b5a1a 100644 --- a/sys/arch/sparc64/include/bus.h +++ b/sys/arch/sparc64/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.12 2002/03/14 03:16:00 millert Exp $ */ +/* $OpenBSD: bus.h,v 1.13 2002/05/13 19:31:32 jason Exp $ */ /* $NetBSD: bus.h,v 1.31 2001/09/21 15:30:41 wiz Exp $ */ /*- @@ -1430,6 +1430,7 @@ bus_space_copy_region_stream_8(t, h1, o1, h2, o2, c) #define BUS_DMA_NOCACHE BUS_DMA_BUS1 #define BUS_DMA_DVMA BUS_DMA_BUS2 /* Don't bother with alignment */ +#define BUS_DMA_24BIT BUS_DMA_BUS3 /* 24bit device */ /* Forwards needed by prototypes below. */ struct mbuf; |