diff options
author | cg <cg@FreeBSD.org> | 2000-03-20 15:30:50 +0000 |
---|---|---|
committer | cg <cg@FreeBSD.org> | 2000-03-20 15:30:50 +0000 |
commit | effa7bc907a13c9166491626c1edcaa9d6598a96 (patch) | |
tree | 52fe9e3aa64125021a03319292c745ca3651bdbd /sys/dev/sound/pci/aureal.c | |
parent | 2a1e86107da4228384ff5e206f3bd033a6913ee7 (diff) | |
download | FreeBSD-src-effa7bc907a13c9166491626c1edcaa9d6598a96.zip FreeBSD-src-effa7bc907a13c9166491626c1edcaa9d6598a96.tar.gz |
update the ac97 layer:
* add a callback for initialising the mixer interface
* support ac97 2.1 variable rate audio feature
fix ac97-using drivers for the above
add suspend/resume support for neomagic
Diffstat (limited to 'sys/dev/sound/pci/aureal.c')
-rw-r--r-- | sys/dev/sound/pci/aureal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/aureal.c b/sys/dev/sound/pci/aureal.c index 168f6b1..f6403c7 100644 --- a/sys/dev/sound/pci/aureal.c +++ b/sys/dev/sound/pci/aureal.c @@ -633,7 +633,7 @@ au_pci_attach(device_t dev) goto bad; } - codec = ac97_create(dev, au, au_rdcd, au_wrcd); + codec = ac97_create(dev, au, NULL, au_rdcd, au_wrcd); if (codec == NULL) goto bad; mixer_init(d, &ac97_mixer, codec); |