From 769fad832f0f4896eb925be816b36473fb3764e8 Mon Sep 17 00:00:00 2001 From: deraadt Date: Thu, 30 Nov 1995 09:51:26 +0000 Subject: [PATCH] do not drop into debugger on simple recoverable errors --- sys/arch/mvme68k/dev/siop.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/sys/arch/mvme68k/dev/siop.c b/sys/arch/mvme68k/dev/siop.c index ae301b515e6..56fc1503d09 100644 --- a/sys/arch/mvme68k/dev/siop.c +++ b/sys/arch/mvme68k/dev/siop.c @@ -1,4 +1,4 @@ -/* $Id: siop.c,v 1.2 1995/11/07 08:49:31 deraadt Exp $ */ +/* $Id: siop.c,v 1.3 1995/11/30 09:51:26 deraadt Exp $ */ /* * Copyright (c) 1994 Michael L. Hitch @@ -1265,15 +1265,17 @@ bad_phase: printf ("scripts %x ds %x rp %x dsp %x dcmd %x\n", sc->sc_scriptspa, kvtop(&acb->ds), kvtop(rp), rp->siop_dsp, *((long *)&rp->siop_dcmd)); - printf ("siopchkintr: istat %x dstat %x sstat0 %x dsps %x dsa %x sbcl %x sts %x msg %x %x sfbr %x\n", + printf ("siopchkintr: istat %x dstat %x sstat0 %x dsps %x " + "dsa %x sbcl %x sts %x msg %x %x sfbr %x\n", istat, dstat, sstat0, rp->siop_dsps, rp->siop_dsa, - rp->siop_sbcl, acb->stat[0], acb->msg[0], acb->msg[1], rp->siop_sfbr); + rp->siop_sbcl, acb->stat[0], acb->msg[0], acb->msg[1], + rp->siop_sfbr); #ifdef DEBUG if (siop_debug & 0x20) panic("siopchkintr: **** temp ****"); -#endif #ifdef DDB - Debugger (); + /* Debugger(); */ +#endif #endif siopreset (sc); /* hard reset */ *status = -1; -- 2.20.1