diff options
| author | Scott Long <scottl@FreeBSD.org> | 2006-10-19 08:01:43 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2006-10-19 08:01:43 +0000 |
| commit | e06c7065423a610b7322c9c47863b5cfd8c6210e (patch) | |
| tree | 016f3145a77597d8cac6379df7f2c7568f531f70 /sys/dev/bce | |
| parent | 48e569ed45325c2dccbfae1cc104ac905e0e2b8e (diff) | |
Notes
Diffstat (limited to 'sys/dev/bce')
| -rw-r--r-- | sys/dev/bce/if_bce.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/bce/if_bce.c b/sys/dev/bce/if_bce.c index 1822e240217b..0eacbe2603ba 100644 --- a/sys/dev/bce/if_bce.c +++ b/sys/dev/bce/if_bce.c @@ -2175,7 +2175,7 @@ bce_dma_alloc(device_t dev) * Allocate the parent bus DMA tag appropriate for PCI. */ if (bus_dma_tag_create(NULL, /* parent */ - BCE_DMA_ALIGN, /* alignment */ + 1, /* alignment */ BCE_DMA_BOUNDARY, /* boundary */ sc->max_bus_addr, /* lowaddr */ BUS_SPACE_MAXADDR, /* highaddr */ @@ -2378,7 +2378,7 @@ bce_dma_alloc(device_t dev) /* Create a DMA tag for TX mbufs. */ if (bus_dma_tag_create( sc->parent_tag, /* parent */ - BCE_DMA_ALIGN, /* alignment */ + 1, /* alignment */ BCE_DMA_BOUNDARY, /* boundary */ sc->max_bus_addr, /* lowaddr */ BUS_SPACE_MAXADDR, /* highaddr */ @@ -2476,7 +2476,7 @@ bce_dma_alloc(device_t dev) */ if (bus_dma_tag_create( sc->parent_tag, /* parent */ - BCE_DMA_ALIGN, /* alignment */ + 1, /* alignment */ BCE_DMA_BOUNDARY, /* boundary */ sc->max_bus_addr, /* lowaddr */ BUS_SPACE_MAXADDR, /* highaddr */ |
