summaryrefslogtreecommitdiffstats
path: root/sys/dev/tws
diff options
context:
space:
mode:
authorscottl <scottl@FreeBSD.org>2012-03-12 08:03:51 +0000
committerscottl <scottl@FreeBSD.org>2012-03-12 08:03:51 +0000
commit32e16cef409bd0f9bd89f7ed3f8372af410308a0 (patch)
treedc5d4c305b98bef1388bcb9d1d8e32413a75f5af /sys/dev/tws
parentac2071063e8d399aef49037a97358e68d356f582 (diff)
downloadFreeBSD-src-32e16cef409bd0f9bd89f7ed3f8372af410308a0.zip
FreeBSD-src-32e16cef409bd0f9bd89f7ed3f8372af410308a0.tar.gz
Convert a number of drivers to obtaining their parent DMA tag from their
PCI device attachment.
Diffstat (limited to 'sys/dev/tws')
-rw-r--r--sys/dev/tws/tws.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/tws/tws.c b/sys/dev/tws/tws.c
index ba3b150..b1615db 100644
--- a/sys/dev/tws/tws.c
+++ b/sys/dev/tws/tws.c
@@ -521,7 +521,7 @@ tws_init(struct tws_softc *sc)
TWS_MAX_32BIT_SG_ELEMENTS;
dma_mem_size = (sizeof(struct tws_command_packet) * tws_queue_depth) +
(TWS_SECTOR_SIZE) ;
- if ( bus_dma_tag_create(NULL, /* parent */
+ if ( bus_dma_tag_create(bus_get_dma_tag(sc->tws_dev), /* PCI parent */
TWS_ALIGNMENT, /* alignment */
0, /* boundary */
BUS_SPACE_MAXADDR_32BIT, /* lowaddr */
OpenPOWER on IntegriCloud