From c9d2fecbd06d0e9efc2fa16f214f1612a9a40d93 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Tue, 16 Feb 2016 08:52:33 +0100 Subject: usbuhci: removing "uhci bug" print spam from interrupt handler this code was if(0) for a long time due to wrong parentesis, fixed parentesis cause print spam on some machines making them unusage (kenji okomoto). removing the check alltogether. --- sys/src/9/pc/usbuhci.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sys/src/9/pc/usbuhci.c b/sys/src/9/pc/usbuhci.c index f532d071d..92757b9b0 100644 --- a/sys/src/9/pc/usbuhci.c +++ b/sys/src/9/pc/usbuhci.c @@ -958,10 +958,6 @@ interrupt(Ureg*, void *a) } OUTS(Status, sts & Sall); cmd = INS(Cmd); - if((cmd & Crun) == 0){ - iprint("uhci %#ux: not running: uhci bug?\n", ctlr->port); - /* BUG: should abort everything in this case */ - } if(debug > 1){ frptr = INL(Flbaseadd); frno = INL(Frnum); -- cgit v1.2.3