diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-07-08 02:54:44 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-07-08 02:54:44 +0000 |
commit | f9710198562167242154466dbfd896ce9c53a4e7 (patch) | |
tree | 425ba96dd1499c792f529c31af25ef6cdfe63d49 /sys/dev/pci/if_de.c | |
parent | 96713eee79aae352bf1061ba3a859db7aac8ab91 (diff) |
remove splnet from attach routine.
Diffstat (limited to 'sys/dev/pci/if_de.c')
-rw-r--r-- | sys/dev/pci/if_de.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/pci/if_de.c b/sys/dev/pci/if_de.c index 515988d56d1..45e17dca4eb 100644 --- a/sys/dev/pci/if_de.c +++ b/sys/dev/pci/if_de.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_de.c,v 1.92 2006/06/01 09:45:48 brad Exp $ */ +/* $OpenBSD: if_de.c,v 1.93 2006/07/08 02:54:43 brad Exp $ */ /* $NetBSD: if_de.c,v 1.58 1998/01/12 09:39:58 thorpej Exp $ */ /*- @@ -4749,7 +4749,6 @@ tulip_pci_attach(struct device * const parent, struct device * const self, void #endif (sc->tulip_revinfo & 0xF0) >> 4, sc->tulip_revinfo & 0x0F); } else { - int s; int (*intr_rtn)(void *) = tulip_intr_normal; if (sc->tulip_features & TULIP_HAVE_SHAREDINTR) @@ -4781,8 +4780,6 @@ tulip_pci_attach(struct device * const parent, struct device * const self, void printf("%s: warning: couldn't establish shutdown hook\n", sc->tulip_xname); - s = splnet(); tulip_attach(sc); - splx(s); } } |