Tweak the DMA limit from rev 1.33, it was off by one byte.

Submitted by:	scottl
This commit is contained in:
silby 2006-04-28 05:38:12 +00:00
parent 5f31c6a72f
commit db1ff87b3b

View File

@ -203,7 +203,7 @@ bfe_dma_alloc(device_t dev)
*/
error = bus_dma_tag_create(NULL, /* parent */
PAGE_SIZE, 0, /* alignment, boundary */
0x40000000, /* lowaddr */
0x3FFFFFFF, /* lowaddr */
BUS_SPACE_MAXADDR, /* highaddr */
NULL, NULL, /* filter, filterarg */
MAXBSIZE, /* maxsize */