diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-11-09 05:56:06 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-11-09 05:56:06 +0000 |
commit | ce572dae29b62d451a83fef3ef4fee433bf244cf (patch) | |
tree | 020ca6c11018e40ca2e784aaf82bcc572a67c65e /sys/dev | |
parent | d35d3e0ea5084f6031afd40ed525cafe6a9ef5d3 (diff) |
splimp -> splnet
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pcmcia/if_xe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pcmcia/if_xe.c b/sys/dev/pcmcia/if_xe.c index f66718b6e2f..5773a2bc430 100644 --- a/sys/dev/pcmcia/if_xe.c +++ b/sys/dev/pcmcia/if_xe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_xe.c,v 1.29 2005/06/08 17:03:01 henning Exp $ */ +/* $OpenBSD: if_xe.c,v 1.30 2005/11/09 05:56:05 brad Exp $ */ /* * Copyright (c) 1999 Niklas Hallqvist, Brandon Creighton, Job de Haas @@ -1073,7 +1073,7 @@ xe_init(sc) DPRINTF(XED_CONFIG, ("xe_init\n")); - s = splimp(); + s = splnet(); xe_set_address(sc); @@ -1213,7 +1213,7 @@ xe_ioctl(ifp, command, data) struct ifreq *ifr = (struct ifreq *)data; int s, error = 0; - s = splimp(); + s = splnet(); switch (command) { case SIOCSIFADDR: |