diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-01-19 01:12:39 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-01-19 01:12:39 +0100 |
commit | e4875c1ae7fd5dd0439f77119548349f4bfd981c (patch) | |
tree | 502ee7150dd34f2f264c4910873d158e134a26a2 /sys/src/9/port/devaudio.c | |
parent | ece0b667392d5075f8037171e68a0deed827a5c0 (diff) |
audiohda: first attempt on audio recording support for intel hda audio, distinguish mode in audio code
Diffstat (limited to 'sys/src/9/port/devaudio.c')
-rw-r--r-- | sys/src/9/port/devaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/devaudio.c b/sys/src/9/port/devaudio.c index eceed5af0..21aa6f136 100644 --- a/sys/src/9/port/devaudio.c +++ b/sys/src/9/port/devaudio.c @@ -311,7 +311,7 @@ audioclose(Chan *c) if((c->qid.path == Qaudio) && (c->flag & COPEN)){ if(adev->close){ if(!waserror()){ - adev->close(adev); + adev->close(adev, c->mode); poperror(); } } |