diff options
| author | Cameron Grant <cg@FreeBSD.org> | 2001-04-10 13:52:26 +0000 |
|---|---|---|
| committer | Cameron Grant <cg@FreeBSD.org> | 2001-04-10 13:52:26 +0000 |
| commit | f72b6281c2ba2e434f80846d2d918659e052cecc (patch) | |
| tree | 5cba0d4b6de6b08535de6e74dcb878cc22b1b11a /sys/dev | |
| parent | 044479f5ad1ba4ec37ba855de5e5d2c0502d5511 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/sound/isa/ad1816.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sound/isa/ad1816.c b/sys/dev/sound/isa/ad1816.c index 8e6e6c8a9021..dddc96fd1be7 100644 --- a/sys/dev/sound/isa/ad1816.c +++ b/sys/dev/sound/isa/ad1816.c @@ -88,13 +88,13 @@ static struct pcmchan_caps ad1816_caps = {4000, 55200, ad1816_fmt, 0}; static void ad1816_lock(struct ad1816_info *ad1816) { - snd_mtxlock(ad1816); + snd_mtxlock(ad1816->lock); } static void ad1816_unlock(struct ad1816_info *ad1816) { - snd_mtxunlock(ad1816); + snd_mtxunlock(ad1816->lock); } static int |
