summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_ipw.c
diff options
context:
space:
mode:
authorDamien Bergamini <damien@cvs.openbsd.org>2010-08-12 16:59:30 +0000
committerDamien Bergamini <damien@cvs.openbsd.org>2010-08-12 16:59:30 +0000
commit936cbc0552da6fd0013242f8cb91ef9337d2459d (patch)
tree469570857a2d7aaa1ff0a91b49ea40be791c51f2 /sys/dev/pci/if_ipw.c
parentde5938e60019448c40f039ca3daea63ef52f05ef (diff)
homogeneous style.
no binary change.
Diffstat (limited to 'sys/dev/pci/if_ipw.c')
-rw-r--r--sys/dev/pci/if_ipw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/if_ipw.c b/sys/dev/pci/if_ipw.c
index e2d28eab276..b2407f5b57b 100644
--- a/sys/dev/pci/if_ipw.c
+++ b/sys/dev/pci/if_ipw.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ipw.c,v 1.89 2010/08/12 15:03:59 oga Exp $ */
+/* $OpenBSD: if_ipw.c,v 1.90 2010/08/12 16:59:29 damien Exp $ */
/*-
* Copyright (c) 2004-2008
@@ -311,7 +311,7 @@ ipw_activate(struct device *self, int act)
break;
}
- return (0);
+ return 0;
}
void
@@ -1402,9 +1402,9 @@ ipw_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
* Prevent processes from entering this function while another
* process is tsleep'ing in it.
*/
- while (sc->sc_flags & IPW_FLAG_BUSY && error == 0)
+ while ((sc->sc_flags & IPW_FLAG_BUSY) && error == 0)
error = tsleep(&sc->sc_flags, PCATCH, "ipwioc", 0);
- if (error) {
+ if (error != 0) {
splx(s);
return error;
}