summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2006-12-27 14:22:49 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2006-12-27 14:22:49 +0000
commit4d2ba7fac6a528ccce532c963c4c0e9479f3afe5 (patch)
treeac899b40c0d98d8da2f4c8dfb6e2f466c0262bbe /sys
parent5819be629f232f06162d162a49ae6f4ad2773bd2 (diff)
spacing
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/ic/bcw.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/ic/bcw.c b/sys/dev/ic/bcw.c
index 2031686b34e..8544ed56ae4 100644
--- a/sys/dev/ic/bcw.c
+++ b/sys/dev/ic/bcw.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcw.c,v 1.11 2006/12/27 14:05:57 jsg Exp $ */
+/* $OpenBSD: bcw.c,v 1.12 2006/12/27 14:22:48 jsg Exp $ */
/*
* Copyright (c) 2006 Jon Simola <jsimola@gmail.com>
@@ -297,15 +297,15 @@ bcw_attach(struct bcw_softc *sc)
* XXX Select the 802.11 core, then
* Get and display the PHY info from the MIMO
*/
- for (i=0; i < sc->sc_numcores; i++) {
+ for (i = 0; i < sc->sc_numcores; i++) {
if (sc->sc_core[i].id == BCW_CORE_80211)
(sc->sc_conf_write)(sc, BCW_ADDR_SPACE0,
BCW_CORE_SELECT(i));
}
sbval = BCW_READ16(sc, 0x3E0);
- sc->sc_phy_version = (sbval&0xf000)>>12;
- sc->sc_phy_rev = sbval&0xf;
- sc->sc_phy_type = (sbval&0xf00)>>8;
+ sc->sc_phy_version = (sbval & 0xf000) >> 12;
+ sc->sc_phy_rev = sbval & 0xf;
+ sc->sc_phy_type = (sbval & 0xf00) >> 8;
DPRINTF(("%s: PHY version %d revision %d ",
sc->sc_dev.dv_xname, sc->sc_phy_version, sc->sc_phy_rev));
switch (sc->sc_phy_type) {
@@ -674,7 +674,7 @@ bcw_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
}
break;
case SIOCSIFFLAGS:
- if ((ifp->if_flags & IFF_UP)&&(!(ifp->if_flags & IFF_RUNNING)))
+ if ((ifp->if_flags & IFF_UP) && (!(ifp->if_flags & IFF_RUNNING)))
bcw_init(ifp);
else if (ifp->if_flags & IFF_RUNNING)
bcw_stop(ifp, 1);
@@ -1323,7 +1323,7 @@ bcw_reset(struct bcw_softc *sc)
/* Really stupid PCI space dump */
#if 0
- for (i=0xe00; i<0x1000; i+=4) {
+ for (i = 0xe00; i < 0x1000; i += 4) {
if ((i % 16) == 0)
DPRINTF(("%s: 0x%04x - ",sc->sc_dev.dv_xname, i));
DPRINTF(("0x%08x ", BCW_READ(sc, i)));