diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2000-04-14 03:29:02 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2000-04-14 03:29:02 +0000 |
commit | 5f2960f2bc718eceff8d79848965e33e2eabc716 (patch) | |
tree | 920b054798bfcd9c9ca22cd82c66564dd42220ea /sys/dev/eisa | |
parent | b4ac73eaa8ad3b74aa0fc410f6fee33f046f5b34 (diff) |
This fixes EISA bus_space API. The bus dma tag was never initialized!!!
Diffstat (limited to 'sys/dev/eisa')
-rw-r--r-- | sys/dev/eisa/eisa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/eisa/eisa.c b/sys/dev/eisa/eisa.c index 69931442426..6370068da23 100644 --- a/sys/dev/eisa/eisa.c +++ b/sys/dev/eisa/eisa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eisa.c,v 1.6 1996/11/28 23:27:38 niklas Exp $ */ +/* $OpenBSD: eisa.c,v 1.7 2000/04/14 03:29:01 smurph Exp $ */ /* $NetBSD: eisa.c,v 1.15 1996/10/21 22:31:01 thorpej Exp $ */ /* @@ -140,6 +140,7 @@ eisaattach(parent, self, aux) bus_space_handle_t slotioh; int i; + ea.ea_dmat = eba->eba_dmat; ea.ea_iot = iot; ea.ea_memt = memt; ea.ea_ec = ec; |