diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 1999-08-16 01:52:21 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 1999-08-16 01:52:21 +0000 |
| commit | 086646f7c6630b28dc44a42d9d7ba67fec2b9da1 (patch) | |
| tree | 6d72bd9b1034198fd9619ded0161b70671e6437c /sys/dev/ahb/ahb.c | |
| parent | 3c0dcb2cf2102fab4f7ef554d922e5204420d3f0 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ahb/ahb.c')
| -rw-r--r-- | sys/dev/ahb/ahb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ahb/ahb.c b/sys/dev/ahb/ahb.c index 7ae7bd142523..a1dc84ac5e7a 100644 --- a/sys/dev/ahb/ahb.c +++ b/sys/dev/ahb/ahb.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahb.c,v 1.12 1999/05/08 21:59:17 dfr Exp $ + * $Id: ahb.c,v 1.13 1999/08/01 22:57:08 mdodd Exp $ */ #include "eisa.h" @@ -299,7 +299,7 @@ ahbattach(device_t dev) */ /* DMA tag for mapping buffers into device visible space. */ /* XXX Should be a child of the EISA bus dma tag */ - if (bus_dma_tag_create(/*parent*/NULL, /*alignment*/0, /*boundary*/0, + if (bus_dma_tag_create(/*parent*/NULL, /*alignment*/1, /*boundary*/0, /*lowaddr*/BUS_SPACE_MAXADDR_32BIT, /*highaddr*/BUS_SPACE_MAXADDR, /*filter*/NULL, /*filterarg*/NULL, @@ -312,7 +312,7 @@ ahbattach(device_t dev) ahb->init_level++; /* DMA tag for our ccb structures and ha inquiry data */ - if (bus_dma_tag_create(/*parent*/NULL, /*alignment*/0, /*boundary*/0, + if (bus_dma_tag_create(/*parent*/NULL, /*alignment*/1, /*boundary*/0, /*lowaddr*/BUS_SPACE_MAXADDR_32BIT, /*highaddr*/BUS_SPACE_MAXADDR, /*filter*/NULL, /*filterarg*/NULL, |
