aboutsummaryrefslogtreecommitdiff
path: root/sys/pci/if_sis.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2005-01-05 10:26:12 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2005-01-05 10:26:12 +0000
commit1e079a911337350d31722ad1020f77746ce4ddf8 (patch)
treea4fb337051952091e29f7068c5ee2bbb0d3402c4 /sys/pci/if_sis.c
parenta55fd2ad97443cd8959e9d8ea58705e88aadd797 (diff)
downloadsrc-1e079a911337350d31722ad1020f77746ce4ddf8.tar.gz
src-1e079a911337350d31722ad1020f77746ce4ddf8.zip
Make sis_initl() take a typed argument.
Expect caller to lock before calling sis_stop() Various style stuff.
Notes
Notes: svn path=/head/; revision=139717
Diffstat (limited to 'sys/pci/if_sis.c')
-rw-r--r--sys/pci/if_sis.c39
1 files changed, 15 insertions, 24 deletions
diff --git a/sys/pci/if_sis.c b/sys/pci/if_sis.c
index 8fa2e1521fa3..a77efdc1dd07 100644
--- a/sys/pci/if_sis.c
+++ b/sys/pci/if_sis.c
@@ -128,7 +128,7 @@ static void sis_start (struct ifnet *);
static void sis_startl (struct ifnet *);
static int sis_ioctl (struct ifnet *, u_long, caddr_t);
static void sis_init (void *);
-static void sis_initl (void *);
+static void sis_initl (struct sis_softc *);
static void sis_stop (struct sis_softc *);
static void sis_watchdog (struct ifnet *);
static void sis_shutdown (device_t);
@@ -828,15 +828,13 @@ sis_miibus_writereg(dev, phy, reg, data)
}
static void
-sis_miibus_statchg(dev)
- device_t dev;
+sis_miibus_statchg(device_t dev)
{
struct sis_softc *sc;
sc = device_get_softc(dev);
- sis_init(sc);
-
- return;
+ SIS_LOCK_ASSERT(sc);
+ sis_initl(sc);
}
static u_int32_t
@@ -971,8 +969,7 @@ sis_setmulti_sis(sc)
}
static void
-sis_reset(sc)
- struct sis_softc *sc;
+sis_reset(struct sis_softc *sc)
{
int i;
@@ -1817,6 +1814,7 @@ sis_intr(arg)
CSR_WRITE_4(sc, SIS_IER, 0);
for (;;) {
+ SIS_LOCK_ASSERT(sc);
/* Reading the ISR register clears all interrupts. */
status = CSR_READ_4(sc, SIS_ISR);
@@ -1940,8 +1938,7 @@ sis_encap(sc, m_head, txidx)
*/
static void
-sis_start(ifp)
- struct ifnet *ifp;
+sis_start(struct ifnet *ifp)
{
struct sis_softc *sc;
@@ -2009,15 +2006,14 @@ sis_init(void *xsc)
struct sis_softc *sc = xsc;
SIS_LOCK(sc);
- sis_initl(xsc);
+ sis_initl(sc);
SIS_UNLOCK(sc);
}
static void
-sis_initl(void *xsc)
+sis_initl(struct sis_softc *sc)
{
- struct sis_softc *sc = xsc;
struct ifnet *ifp = &sc->arpcom.ac_if;
struct mii_data *mii;
@@ -2292,8 +2288,11 @@ sis_ioctl(ifp, command, data)
if (ifp->if_flags & IFF_UP) {
sis_init(sc);
} else {
- if (ifp->if_flags & IFF_RUNNING)
+ if (ifp->if_flags & IFF_RUNNING) {
+ SIS_LOCK(sc);
sis_stop(sc);
+ SIS_UNLOCK(sc);
+ }
}
error = 0;
break;
@@ -2347,8 +2346,6 @@ sis_watchdog(ifp)
sis_startl(ifp);
SIS_UNLOCK(sc);
-
- return;
}
/*
@@ -2364,7 +2361,7 @@ sis_stop(sc)
if (sc->sis_stopped)
return;
- SIS_LOCK(sc);
+ SIS_LOCK_ASSERT(sc);
ifp = &sc->arpcom.ac_if;
ifp->if_timer = 0;
@@ -2417,9 +2414,6 @@ sis_stop(sc)
sizeof(sc->sis_tx_list));
sc->sis_stopped = 1;
- SIS_UNLOCK(sc);
-
- return;
}
/*
@@ -2427,8 +2421,7 @@ sis_stop(sc)
* get confused by errant DMAs when rebooting.
*/
static void
-sis_shutdown(dev)
- device_t dev;
+sis_shutdown(device_t dev)
{
struct sis_softc *sc;
@@ -2437,6 +2430,4 @@ sis_shutdown(dev)
sis_reset(sc);
sis_stop(sc);
SIS_UNLOCK(sc);
-
- return;
}