1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-25 16:13:17 +00:00

A dma tag alignment should be 1 (not 0) when a device can dma at any address.

This commit is contained in:
Ian Lepore 2014-11-06 18:14:12 +00:00
parent 57c3556b58
commit c2846d2e3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274188

View File

@ -296,7 +296,7 @@ ida_eisa_attach(device_t dev)
error = bus_dma_tag_create(
/* parent */ bus_get_dma_tag(dev),
/* alignment */ 0,
/* alignment */ 1,
/* boundary */ 0,
/* lowaddr */ BUS_SPACE_MAXADDR_32BIT,
/* highaddr */ BUS_SPACE_MAXADDR,