git: 9front

Download patch

ref: 9514073601c28e82c17fcf375e4edf4ebbc82cb7
parent: fec4fc7258b3d0230d39dd2918b2a45701c6bd9c
author: cinap_lenrek <cinap_lenrek@localhost>
date: Tue Jul 12 23:09:52 EDT 2011

audiohda: remove unhandled interrupt prints as it spams the console if interrupts are shared

--- a/sys/src/9/pc/audiohda.c
+++ b/sys/src/9/pc/audiohda.c
@@ -1194,11 +1194,8 @@
 	
 	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);
 }
 
--