From 253b72896cfa69db275ca5d1ffedc322c237a706 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sun, 29 Sep 2002 23:36:17 +0000 Subject: [PATCH] Parens considered good. --- sys/pccard/pcic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index ec9b1bd3cfe..122bc246b71 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -960,7 +960,7 @@ pcic_reset(void *chan) printf("int is %x stat is %x\n", sp->getb(sp, PCIC_INT_GEN), sp->getb(sp, PCIC_STATUS)); - if (!sp->getb(sp, PCIC_STATUS) & PCIC_READY) { + if ((sp->getb(sp, PCIC_STATUS) & PCIC_READY) == 0) { timeout(pcic_reset, (void *)slt, hz/10); return; }