ref: 562687b5c16e668919ffe50e083e2e028a19aa28
parent: e0e1c877b921c455de0c412c6cdde2f83cd03e27
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Tue Feb 16 03:52:33 EST 2016
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.
--- a/sys/src/9/pc/usbuhci.c
+++ b/sys/src/9/pc/usbuhci.c
@@ -958,10 +958,6 @@
}
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);
--
⑨