summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/dev
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-30 09:51:27 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-30 09:51:27 +0000
commit9522e056233b2d58cfd2b4ce269b40b17ef856f0 (patch)
treee71d9312f8e2f54093357c7eb968f23b7e88a1a0 /sys/arch/mvme68k/dev
parent830b4531a9f5ca9c276d17444e2d16c9ed87defa (diff)
do not drop into debugger on simple recoverable errors
Diffstat (limited to 'sys/arch/mvme68k/dev')
-rw-r--r--sys/arch/mvme68k/dev/siop.c12
1 files 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;