1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-14 14:55:41 +00:00

Fix the order of the lowaddr,highaddr arguments in the parent tag. This

coincidentally didn't cause any problems, but was definitely wrong.
This commit is contained in:
Scott Long 2005-04-24 02:45:27 +00:00
parent 65db76c1aa
commit 2f28b97311
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145470

View File

@ -1927,7 +1927,7 @@ bge_dma_alloc(dev)
error = bus_dma_tag_create(NULL, /* parent */
PAGE_SIZE, 0, /* alignment, boundary */
BUS_SPACE_MAXADDR, /* lowaddr */
BUS_SPACE_MAXADDR_32BIT,/* highaddr */
BUS_SPACE_MAXADDR, /* highaddr */
NULL, NULL, /* filter, filterarg */
MAXBSIZE, BGE_NSEG_NEW, /* maxsize, nsegments */
BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */