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:
scottl 2005-04-24 02:45:27 +00:00
parent 37f3e68064
commit 2648cc9805

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 */