diff options
author | gibbs <gibbs@FreeBSD.org> | 2003-05-03 23:27:57 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 2003-05-03 23:27:57 +0000 |
commit | e4f9ea59a81d122ae2f500e31ad3ea1b22c58090 (patch) | |
tree | 09b7bcebde29d88b43058f24ff75e13ed01ca092 /sys/dev/aic7xxx/ahc_eisa.c | |
parent | ff52fc6ca2fa7a7af7f48addb688de9ff2f97f50 (diff) | |
download | FreeBSD-src-e4f9ea59a81d122ae2f500e31ad3ea1b22c58090.zip FreeBSD-src-e4f9ea59a81d122ae2f500e31ad3ea1b22c58090.tar.gz |
hc_eisa.c:
ahc_pci.c:
ahd_pci.c:
Don't bogusly use the BUS_DMA_ALLOCNOW flag in our psuedo
parent bus dma tag.
Diffstat (limited to 'sys/dev/aic7xxx/ahc_eisa.c')
-rw-r--r-- | sys/dev/aic7xxx/ahc_eisa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/aic7xxx/ahc_eisa.c b/sys/dev/aic7xxx/ahc_eisa.c index 17afd41..9c5a96e 100644 --- a/sys/dev/aic7xxx/ahc_eisa.c +++ b/sys/dev/aic7xxx/ahc_eisa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: //depot/aic7xxx/freebsd/dev/aic7xxx/ahc_eisa.c#10 $ + * $Id: //depot/aic7xxx/freebsd/dev/aic7xxx/ahc_eisa.c#11 $ * * $FreeBSD$ */ @@ -139,7 +139,7 @@ aic7770_attach(device_t dev) /*maxsize*/BUS_SPACE_MAXSIZE_32BIT, /*nsegments*/AHC_NSEG, /*maxsegsz*/AHC_MAXTRANSFER_SIZE, - /*flags*/BUS_DMA_ALLOCNOW, + /*flags*/0, &ahc->parent_dmat); if (error != 0) { |