diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2010-08-12 16:59:30 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2010-08-12 16:59:30 +0000 |
commit | 936cbc0552da6fd0013242f8cb91ef9337d2459d (patch) | |
tree | 469570857a2d7aaa1ff0a91b49ea40be791c51f2 /sys/dev/pci/if_wpi.c | |
parent | de5938e60019448c40f039ca3daea63ef52f05ef (diff) |
homogeneous style.
no binary change.
Diffstat (limited to 'sys/dev/pci/if_wpi.c')
-rw-r--r-- | sys/dev/pci/if_wpi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/if_wpi.c b/sys/dev/pci/if_wpi.c index 5ca6aa11cba..6458e6bbe61 100644 --- a/sys/dev/pci/if_wpi.c +++ b/sys/dev/pci/if_wpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wpi.c,v 1.105 2010/08/12 15:04:00 oga Exp $ */ +/* $OpenBSD: if_wpi.c,v 1.106 2010/08/12 16:59:29 damien Exp $ */ /*- * Copyright (c) 2006-2008 @@ -408,7 +408,7 @@ wpi_activate(struct device *self, int act) break; } - return (0); + return 0; } void @@ -2002,9 +2002,9 @@ wpi_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 & WPI_FLAG_BUSY && error == 0) + while ((sc->sc_flags & WPI_FLAG_BUSY) && error == 0) error = tsleep(&sc->sc_flags, PCATCH, "wpiioc", 0); - if (error) { + if (error != 0) { splx(s); return error; } |