summaryrefslogtreecommitdiffstats
path: root/sys/dev/sbsh
diff options
context:
space:
mode:
authorfjoe <fjoe@FreeBSD.org>2003-04-15 17:26:28 +0000
committerfjoe <fjoe@FreeBSD.org>2003-04-15 17:26:28 +0000
commit966c63b53a984aa687ad8a8f99d7bd1349f83f3a (patch)
treea9baa32e05297ffe807ec6609246d661895233aa /sys/dev/sbsh
parent64f102eb0c6137dcc101bf0ea82511cfca4eee83 (diff)
downloadFreeBSD-src-966c63b53a984aa687ad8a8f99d7bd1349f83f3a.zip
FreeBSD-src-966c63b53a984aa687ad8a8f99d7bd1349f83f3a.tar.gz
cosmetic style fixes
Diffstat (limited to 'sys/dev/sbsh')
-rw-r--r--sys/dev/sbsh/if_sbsh.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/sys/dev/sbsh/if_sbsh.c b/sys/dev/sbsh/if_sbsh.c
index 18efe1d..147a745 100644
--- a/sys/dev/sbsh/if_sbsh.c
+++ b/sys/dev/sbsh/if_sbsh.c
@@ -145,7 +145,6 @@ struct dsl_stats {
enum State { NOT_LOADED, DOWN, ACTIVATION, ACTIVE };
-
#define SIOCLOADFIRMW _IOWR('i', 67, struct ifreq)
#define SIOCGETSTATS _IOWR('i', 68, struct ifreq)
#define SIOCCLRSTATS _IOWR('i', 69, struct ifreq)
@@ -215,7 +214,6 @@ sbsh_probe(device_t dev)
return (0);
}
-
static int
sbsh_attach(device_t dev)
{
@@ -554,9 +552,10 @@ sbsh_watchdog(struct ifnet *ifp)
if_printf(ifp, "transmit timeout\n");
- if (sc->regs->SR & TXS)
- sc->regs->SR = TXS,
+ if (sc->regs->SR & TXS) {
+ sc->regs->SR = TXS;
if_printf(ifp, "interrupt posted but not delivered\n");
+ }
free_sent_buffers(sc);
}
@@ -918,13 +917,18 @@ start_cx28975(struct sbsh_softc *sc, struct cx28975_cfg cfg)
sc->regs->SR = 0xff;
DELAY(2);
sc->regs->CR = XRST;
- if (cfg.crc16) sc->regs->CR |= CMOD;
- if (cfg.fill_7e) sc->regs->CR |= FMOD;
- if (cfg.inv) sc->regs->CR |= PMOD;
+ if (cfg.crc16)
+ sc->regs->CR |= CMOD;
+ if (cfg.fill_7e)
+ sc->regs->CR |= FMOD;
+ if (cfg.inv)
+ sc->regs->CR |= PMOD;
sc->regs->CRB |= RODD | RXDE;
- if (cfg.rburst) sc->regs->CRB |= RDBE;
- if (cfg.wburst) sc->regs->CRB |= WTBE;
+ if (cfg.rburst)
+ sc->regs->CRB |= RDBE;
+ if (cfg.wburst)
+ sc->regs->CRB |= WTBE;
tsleep(sc, PWAIT, "sbsh", 0);
if ((p->out_ack & 0x1f) != _ACK_BOOT_WAKE_UP)
OpenPOWER on IntegriCloud