summaryrefslogtreecommitdiffstats
path: root/sys/pccard
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2002-09-29 23:36:17 +0000
committerimp <imp@FreeBSD.org>2002-09-29 23:36:17 +0000
commit0a14f466d6785d21eeb654fff95b8e41a0213e6e (patch)
tree966a23fdae7626acf2d1ba7a65242343a6b0ca79 /sys/pccard
parentfbf94f64b8cff8f35b9a4d4f76bfcef75adbc6b7 (diff)
downloadFreeBSD-src-0a14f466d6785d21eeb654fff95b8e41a0213e6e.zip
FreeBSD-src-0a14f466d6785d21eeb654fff95b8e41a0213e6e.tar.gz
Parens considered good.
Diffstat (limited to 'sys/pccard')
-rw-r--r--sys/pccard/pcic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c
index ec9b1bd..122bc24 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;
}
OpenPOWER on IntegriCloud