diff options
author | scottl <scottl@FreeBSD.org> | 2003-02-26 02:55:58 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2003-02-26 02:55:58 +0000 |
commit | 9390269c86215a6c8dfb14df61c198cfe89e7fc7 (patch) | |
tree | dd4a031aaa398313a40cdc124277bb5349288113 /sys/dev | |
parent | 9f8fe272f6a9c2685ee1afe25fc5776679dc47a8 (diff) | |
download | FreeBSD-src-9390269c86215a6c8dfb14df61c198cfe89e7fc7.zip FreeBSD-src-9390269c86215a6c8dfb14df61c198cfe89e7fc7.tar.gz |
Use BUS_SPACE_MAXADDR_32BIT in the DMA tag where needed. Before the recent
fix to BUS_SPACE_MAXADDR, we were probably bouncing quite a bit =-(
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/aac/aac_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/aac/aac_pci.c b/sys/dev/aac/aac_pci.c index 85bd529..34c1b9a 100644 --- a/sys/dev/aac/aac_pci.c +++ b/sys/dev/aac/aac_pci.c @@ -257,7 +257,7 @@ aac_pci_attach(device_t dev) */ if (bus_dma_tag_create(sc->aac_parent_dmat, /* parent */ 1, 0, /* algnmnt, boundary */ - BUS_SPACE_MAXADDR, /* lowaddr */ + BUS_SPACE_MAXADDR_32BIT, /* lowaddr */ BUS_SPACE_MAXADDR, /* highaddr */ NULL, NULL, /* filter, filterarg */ MAXBSIZE, AAC_MAXSGENTRIES, /* maxsize, nsegments */ @@ -273,7 +273,7 @@ aac_pci_attach(device_t dev) */ if (bus_dma_tag_create(sc->aac_parent_dmat, /* parent */ 1, 0, /* algnmnt, boundary */ - BUS_SPACE_MAXADDR, /* lowaddr */ + BUS_SPACE_MAXADDR_32BIT, /* lowaddr */ BUS_SPACE_MAXADDR, /* highaddr */ NULL, NULL, /* filter, filterarg */ AAC_FIB_COUNT * |