diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-12-11 17:07:15 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-12-11 17:07:15 +0000 |
commit | a8eb0a9fc0b98b7b3415d1ca5352651e9ed778fa (patch) | |
tree | 7413babb4111de04de4c319c894b5a5c32e6feac /sys/arch/amd64/include | |
parent | 7505ac789440ab79520a3193eb85316c416adfc9 (diff) |
Kill the $ARCH prefix for isa_dma_cookie. With this change, the i386 and
amd64 isa dma code is identical save for some formatting, and a slight
difference in bus_dmamem_alloc.
"Die x86_!" krw@.
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/isa_machdep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/isa_machdep.h b/sys/arch/amd64/include/isa_machdep.h index 81c0f4d187a..0a094aa766a 100644 --- a/sys/arch/amd64/include/isa_machdep.h +++ b/sys/arch/amd64/include/isa_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: isa_machdep.h,v 1.8 2008/12/03 15:46:06 oga Exp $ */ +/* $OpenBSD: isa_machdep.h,v 1.9 2008/12/11 17:07:14 oga Exp $ */ /* $NetBSD: isa_machdep.h,v 1.2 2003/05/09 23:51:28 fvdl Exp $ */ /*- @@ -130,7 +130,7 @@ extern struct bus_dma_tag isa_bus_dma_tag; * Cookie used by ISA dma. A pointer to one of these it stashed in * the DMA map. */ -struct x86_isa_dma_cookie { +struct isa_dma_cookie { int id_flags; /* flags; see below */ void *id_origbuf; /* pointer to orig buffer if |