diff options
author | 2002-01-29 20:33:19 +0000 | |
---|---|---|
committer | 2002-01-29 20:33:19 +0000 | |
commit | e307768828118e7d9194df12bdd0900757dbce66 (patch) | |
tree | 133dd903d987dc1155982159df82551d2f10f106 | |
parent | there is no awicontrol, from Alexander Yurchenko <grange@rt.mipt.ru> (diff) | |
download | wireguard-openbsd-e307768828118e7d9194df12bdd0900757dbce66.tar.xz wireguard-openbsd-e307768828118e7d9194df12bdd0900757dbce66.zip |
Don't install a handler for powerfail... this causes weird problems with
the Netra X1 (interactions with lom)
-rw-r--r-- | sys/arch/sparc64/dev/psycho.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/dev/psycho.c b/sys/arch/sparc64/dev/psycho.c index f0f26564359..d5aa5bf43f5 100644 --- a/sys/arch/sparc64/dev/psycho.c +++ b/sys/arch/sparc64/dev/psycho.c @@ -1,4 +1,4 @@ -/* $OpenBSD: psycho.c,v 1.10 2002/01/10 00:06:17 nordin Exp $ */ +/* $OpenBSD: psycho.c,v 1.11 2002/01/29 20:33:19 jason Exp $ */ /* $NetBSD: psycho.c,v 1.39 2001/10/07 20:30:41 eeh Exp $ */ /* @@ -432,9 +432,11 @@ psycho_attach(parent, self, aux) psycho_set_intr(sc, 15, psycho_bus_b, &sc->sc_regs->pciberr_int_map, &sc->sc_regs->pciberr_clr_int); +#if 0 psycho_set_intr(sc, 15, psycho_powerfail, &sc->sc_regs->power_int_map, &sc->sc_regs->power_clr_int); +#endif psycho_set_intr(sc, 1, psycho_wakeup, &sc->sc_regs->pwrmgt_int_map, &sc->sc_regs->pwrmgt_clr_int); |