diff options
author | cg <cg@FreeBSD.org> | 1999-12-29 03:46:54 +0000 |
---|---|---|
committer | cg <cg@FreeBSD.org> | 1999-12-29 03:46:54 +0000 |
commit | 9ed7cb48bf4a00a23e7489706b0effe1c516cb5b (patch) | |
tree | 8bc40a7cac07c88c733e7cfecf813fb5eda76c93 /sys/dev/sound/isa/sb16.c | |
parent | 01077d3d3d15def38358b9a646d4af36c7e226c0 (diff) | |
download | FreeBSD-src-9ed7cb48bf4a00a23e7489706b0effe1c516cb5b.zip FreeBSD-src-9ed7cb48bf4a00a23e7489706b0effe1c516cb5b.tar.gz |
- latest 2ndbuffer patch
- make chn_setdir work for rec on isa cards
- note: es1371 does not irq in smp
Submitted by: tanimura
Diffstat (limited to 'sys/dev/sound/isa/sb16.c')
-rw-r--r-- | sys/dev/sound/isa/sb16.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/sound/isa/sb16.c b/sys/dev/sound/isa/sb16.c index 734788e..7a0c1f1 100644 --- a/sys/dev/sound/isa/sb16.c +++ b/sys/dev/sound/isa/sb16.c @@ -860,6 +860,7 @@ static int sbchan_trigger(void *data, int go) { struct sb_chinfo *ch = data; + if (go == PCMTRIG_EMLDMAWR) return 0; buf_isadma(ch->buffer, go); if (go == PCMTRIG_START) sb_start(ch); else sb_stop(ch); return 0; @@ -928,6 +929,7 @@ static int esschan_trigger(void *data, int go) { struct sb_chinfo *ch = data; + if (go == PCMTRIG_EMLDMAWR) return 0; switch (go) { case PCMTRIG_START: if (!ch->ess_dma_started) |