summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@localhost>2011-07-13 03:09:52 +0200
committercinap_lenrek <cinap_lenrek@localhost>2011-07-13 03:09:52 +0200
commit2c32e8e9f9c0cf74fd2f575e94a784f94116811d (patch)
tree7ee7af79b96afb816cb02af3e2ad2f72e9ea882f
parent9ea3302a4fa37113fef2dd61277f46811b210215 (diff)
audiohda: remove unhandled interrupt prints as it spams the console if interrupts are shared
-rw-r--r--sys/src/9/pc/audiohda.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/src/9/pc/audiohda.c b/sys/src/9/pc/audiohda.c
index 344d8071f..ca108d7e9 100644
--- a/sys/src/9/pc/audiohda.c
+++ b/sys/src/9/pc/audiohda.c
@@ -1194,11 +1194,8 @@ hdainterrupt(Ureg *, void *arg)
ilock(ctlr);
sts = csr32(ctlr, Intsts);
- if(sts & Sismask){
+ if(sts & Sismask)
streamupdate(ctlr);
- }else{
- iprint("#A%d: hda unhandled interrupt\n", ctlr->no);
- }
iunlock(ctlr);
}