From 2c32e8e9f9c0cf74fd2f575e94a784f94116811d Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Wed, 13 Jul 2011 03:09:52 +0200 Subject: audiohda: remove unhandled interrupt prints as it spams the console if interrupts are shared --- sys/src/9/pc/audiohda.c | 5 +---- 1 file changed, 1 insertion(+), 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); } -- cgit v1.2.3