diff options
author | 2007-06-19 00:06:51 +0000 | |
---|---|---|
committer | 2007-06-19 00:06:51 +0000 | |
commit | 5cedd98fdfa038d1a37fb59135752fe6a789771a (patch) | |
tree | 0da402fd14179a03fce13f8f3cd46524235b2d2f | |
parent | Lookup interrupt routing info based on elroy(4) bus number. (diff) | |
download | wireguard-openbsd-5cedd98fdfa038d1a37fb59135752fe6a789771a.tar.xz wireguard-openbsd-5cedd98fdfa038d1a37fb59135752fe6a789771a.zip |
Handle interrupts for the record stream as well. Recording now works.
Tested by ajacoutot@, steven@ and Will Backman.
-rw-r--r-- | sys/dev/pci/azalia.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/azalia.c b/sys/dev/pci/azalia.c index b44f900221d..f466d07b004 100644 --- a/sys/dev/pci/azalia.c +++ b/sys/dev/pci/azalia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: azalia.c,v 1.27 2007/06/13 02:29:10 deanna Exp $ */ +/* $OpenBSD: azalia.c,v 1.28 2007/06/19 00:06:51 deanna Exp $ */ /* $NetBSD: azalia.c,v 1.20 2006/05/07 08:31:44 kent Exp $ */ /*- @@ -491,9 +491,7 @@ azalia_intr(void *v) AZ_WRITE_4(az, INTSTS, intsts); ret += azalia_stream_intr(&az->pstream, intsts); -#if 0 ret += azalia_stream_intr(&az->rstream, intsts); -#endif rirbctl = AZ_READ_1(az, RIRBCTL); rirbsts = AZ_READ_1(az, RIRBSTS); |