diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2007-02-23 13:47:34 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2007-02-23 13:47:34 +0000 |
commit | 0b989078d7378bfb8925f3d8c0dd276d04f84f1a (patch) | |
tree | 91b4aaae1205fe7533687333d8fb0c6e818d5d53 /sys/dev/sound/pci/maestro3.c | |
parent | ef544f631226436ef590825881e7a28369df82f6 (diff) |
MFp4 (114068):
Use bus_get_dma_tag() to obtain the parent DMA tag to make the drivers
a little bit more non-ia32/amd64 friendly.
There is no man page for bus_get_dma_tag, so this is modelled after
rev. 1.62 of src/sys/dev/sound/pci/es137x.c by marius.
Inspired by: commit by marius
Notes
Notes:
svn path=/head/; revision=166904
Diffstat (limited to 'sys/dev/sound/pci/maestro3.c')
-rw-r--r-- | sys/dev/sound/pci/maestro3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/maestro3.c b/sys/dev/sound/pci/maestro3.c index c1b89a364973..1d9571a15ee1 100644 --- a/sys/dev/sound/pci/maestro3.c +++ b/sys/dev/sound/pci/maestro3.c @@ -1240,7 +1240,7 @@ m3_pci_attach(device_t dev) M3_BUFSIZE_MAX); if (bus_dma_tag_create( - NULL, /* parent */ + bus_get_dma_tag(dev), /* parent */ 2, 0, /* alignment, boundary */ M3_MAXADDR, /* lowaddr */ BUS_SPACE_MAXADDR, /* highaddr */ |