summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-10-10 00:10:30 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-10-10 00:10:30 +0000
commit047615e69f96fdfe217e854b3be08f91f348a29d (patch)
tree74611178b9df8284c49b36f48e8ea1d00ba9c680 /sys/dev/pci
parentdb4fd7c3f2773506450fe41268d829c4b5852f0f (diff)
splimp -> splnet
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/if_bge.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c
index 9d0be4293fe..08b1e854653 100644
--- a/sys/dev/pci/if_bge.c
+++ b/sys/dev/pci/if_bge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bge.c,v 1.86 2005/10/09 23:41:55 brad Exp $ */
+/* $OpenBSD: if_bge.c,v 1.87 2005/10/10 00:10:29 brad Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
@@ -2531,7 +2531,7 @@ bge_tick(xsc)
struct ifnet *ifp = &sc->arpcom.ac_if;
int s;
- s = splimp();
+ s = splnet();
if ((sc->bge_quirks & BGE_QUIRK_5705_CORE) == 0)
bge_stats_update(sc);
@@ -2949,7 +2949,7 @@ bge_init(xsc)
u_int16_t *m;
int s;
- s = splimp();
+ s = splnet();
ifp = &sc->arpcom.ac_if;
@@ -3162,7 +3162,7 @@ bge_ioctl(ifp, command, data)
int s, error = 0;
struct mii_data *mii;
- s = splimp();
+ s = splnet();
if ((error = ether_ioctl(ifp, &sc->arpcom, command, data)) > 0) {
splx(s);