diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2005-11-26 05:49:48 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2005-11-26 05:49:48 +0000 |
commit | 6e3d8f4d534c9413b35e7d43817f84854f355a44 (patch) | |
tree | 89925cff54c06fa63c1cd86f947cbc3ef813d90e /sys/dev/ic/amivar.h | |
parent | f6c27e2857f473940b50cb69ff728362093324ad (diff) |
Move bus_dma from pa to dva. I wrote the initial diff with an ok from dlg@
krw@ removed all seg references and cleaned up htole32 a bit.
Diffstat (limited to 'sys/dev/ic/amivar.h')
-rw-r--r-- | sys/dev/ic/amivar.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/ic/amivar.h b/sys/dev/ic/amivar.h index 1588dc3abda..b1d7ebf9e05 100644 --- a/sys/dev/ic/amivar.h +++ b/sys/dev/ic/amivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: amivar.h,v 1.33 2005/11/23 21:36:19 dlg Exp $ */ +/* $OpenBSD: amivar.h,v 1.34 2005/11/26 05:49:47 marco Exp $ */ /* * Copyright (c) 2001 Michael Shalayeff @@ -104,14 +104,12 @@ struct ami_softc { volatile struct ami_iocmd *sc_mbox; paddr_t sc_mbox_pa; bus_dmamap_t sc_mbox_map; - bus_dma_segment_t sc_mbox_seg[1]; struct ami_ccb sc_ccbs[AMI_MAXCMDS]; ami_queue_head sc_free_ccb, sc_ccbq, sc_ccbdone; struct ami_ccbmem *sc_ccbmem; bus_dmamap_t sc_ccbmap; - bus_dma_segment_t sc_ccbseg[1]; int sc_timeout; struct timeout sc_requeue_tmo; |