summaryrefslogtreecommitdiff
path: root/sys/src/9/pc/usbuhci.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-06-13 15:03:56 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2015-06-13 15:03:56 +0200
commit27fb90eb6e2e277849efca83405a75bc3c724b50 (patch)
tree97f38bb89b6004f0d925fec2b84bf9b0dcf4c4c1 /sys/src/9/pc/usbuhci.c
parent9c1dff3fa9928dd66114f3899d8ede99fad2cd53 (diff)
vblade, cifs, usbuhci: fix parenthesis
Diffstat (limited to 'sys/src/9/pc/usbuhci.c')
-rw-r--r--sys/src/9/pc/usbuhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/usbuhci.c b/sys/src/9/pc/usbuhci.c
index 8b5d54b75..f532d071d 100644
--- a/sys/src/9/pc/usbuhci.c
+++ b/sys/src/9/pc/usbuhci.c
@@ -958,7 +958,7 @@ interrupt(Ureg*, void *a)
}
OUTS(Status, sts & Sall);
cmd = INS(Cmd);
- if(cmd & Crun == 0){
+ if((cmd & Crun) == 0){
iprint("uhci %#ux: not running: uhci bug?\n", ctlr->port);
/* BUG: should abort everything in this case */
}