diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-01-29 20:33:20 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-01-29 20:33:20 +0000 |
commit | d08dceec0711285d7f782e2563644d88a9243cc4 (patch) | |
tree | 01ab829ab26d6665b3e2b0442ebcaae03eb62468 /sys | |
parent | 919523a2a50dd318bd5bbd945c3947a8055efbc0 (diff) |
Don't install a handler for powerfail... this causes weird problems with
the Netra X1 (interactions with lom)
Diffstat (limited to 'sys')
-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); |