diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-02-16 08:52:33 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-02-16 08:52:33 +0100 |
commit | c9d2fecbd06d0e9efc2fa16f214f1612a9a40d93 (patch) | |
tree | 91668407facc5ec69305f45627eb234c3379dfa3 | |
parent | 86dfd3cf16ebded3b15b7792253688c361dd0260 (diff) |
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.
-rw-r--r-- | sys/src/9/pc/usbuhci.c | 4 |
1 files changed, 0 insertions, 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); |