summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound
diff options
context:
space:
mode:
authormarius <marius@FreeBSD.org>2007-01-21 19:32:51 +0000
committermarius <marius@FreeBSD.org>2007-01-21 19:32:51 +0000
commit95a9b2142ae1f23ba99ffffc7acc4055f2c40cea (patch)
tree0022c3a9a6df560b7e242e09f139c9d0dd23011b /sys/dev/sound
parent32ccb0b9691d9721a82fc29bc9002a655b8622b6 (diff)
downloadFreeBSD-src-95a9b2142ae1f23ba99ffffc7acc4055f2c40cea.zip
FreeBSD-src-95a9b2142ae1f23ba99ffffc7acc4055f2c40cea.tar.gz
Change the remainder of the drivers for DMA'ing devices enabled in the
sparc64 GENERIC and the sound device drivers known working on sparc64 to use bus_get_dma_tag() to obtain the parent DMA tag so we can get rid of the sparc64_root_dma_tag kludge eventually. Except for ath(4), sk(4), stge(4) and ti(4) these changes are runtime tested (unless I booted up the wrong kernels again...).
Diffstat (limited to 'sys/dev/sound')
-rw-r--r--sys/dev/sound/pci/es137x.c3
-rw-r--r--sys/dev/sound/sbus/cs4231.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/sound/pci/es137x.c b/sys/dev/sound/pci/es137x.c
index e5aa86e..5d2ba37 100644
--- a/sys/dev/sound/pci/es137x.c
+++ b/sys/dev/sound/pci/es137x.c
@@ -1790,7 +1790,8 @@ es_pci_attach(device_t dev)
goto bad;
}
- if (bus_dma_tag_create(/*parent*/NULL, /*alignment*/2, /*boundary*/0,
+ if (bus_dma_tag_create(/*parent*/bus_get_dma_tag(dev),
+ /*alignment*/2, /*boundary*/0,
/*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
/*highaddr*/BUS_SPACE_MAXADDR,
/*filter*/NULL, /*filterarg*/NULL,
diff --git a/sys/dev/sound/sbus/cs4231.c b/sys/dev/sound/sbus/cs4231.c
index 695b9e7..d463392 100644
--- a/sys/dev/sound/sbus/cs4231.c
+++ b/sys/dev/sound/sbus/cs4231.c
@@ -434,7 +434,7 @@ cs4231_attach_common(struct cs4231_softc *sc)
CS4231_DEFAULT_BUF_SZ, CS4231_MAX_BUF_SZ);
for (i = 0; i < sc->sc_nires; i++) {
if (bus_dma_tag_create(
- NULL, /* parent */
+ bus_get_dma_tag(sc->sc_dev),/* parent */
64, 0, /* alignment, boundary */
BUS_SPACE_MAXADDR_32BIT, /* lowaddr */
BUS_SPACE_MAXADDR, /* highaddr */
OpenPOWER on IntegriCloud