diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-11-07 03:20:01 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-11-07 03:20:01 +0000 |
commit | a7f3467c88281b875f60021303fe31ca7fb2dff8 (patch) | |
tree | b0e95e1dc2fc33ad1fb41a37bf402c39d0bf19ba /sys/dev/ic/rtl81x9.c | |
parent | 122c6d25289aaf1ae44207930b4b0660a098558c (diff) |
splimp -> splnet
Diffstat (limited to 'sys/dev/ic/rtl81x9.c')
-rw-r--r-- | sys/dev/ic/rtl81x9.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/rtl81x9.c b/sys/dev/ic/rtl81x9.c index bce8f2f210b..18bbaf88f1f 100644 --- a/sys/dev/ic/rtl81x9.c +++ b/sys/dev/ic/rtl81x9.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtl81x9.c,v 1.46 2005/10/24 00:35:57 brad Exp $ */ +/* $OpenBSD: rtl81x9.c,v 1.47 2005/11/07 03:20:00 brad Exp $ */ /* * Copyright (c) 1997, 1998 @@ -326,7 +326,7 @@ int rl_mii_readreg(sc, frame) { int i, ack, s; - s = splimp(); + s = splnet(); /* * Set up frame for RX. @@ -418,7 +418,7 @@ int rl_mii_writereg(sc, frame) { int s; - s = splimp(); + s = splnet(); /* * Set up frame for TX. */ @@ -964,7 +964,7 @@ void rl_init(xsc) int s; u_int32_t rxcfg = 0; - s = splimp(); + s = splnet(); /* * Cancel pending I/O and free all RX/TX buffers. @@ -1088,7 +1088,7 @@ int rl_ioctl(ifp, command, data) struct ifaddr *ifa = (struct ifaddr *)data; int s, error = 0; - s = splimp(); + s = splnet(); if ((error = ether_ioctl(ifp, &sc->sc_arpcom, command, data)) > 0) { splx(s); |