summaryrefslogtreecommitdiff
path: root/sys/dev/ic/uha.c
diff options
context:
space:
mode:
authorJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2009-08-29 13:58:52 +0000
committerJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2009-08-29 13:58:52 +0000
commit2a674c0321ab1d6c4d86181028fa51dc3dda5e31 (patch)
treef7aa101e3d4aa304f8a8285b8b81bdbb9483813e /sys/dev/ic/uha.c
parentd95dbebd76898e9673de6acc5cd9e6b4ed875cb5 (diff)
remove more unneeded Debugger() calls from dev/
agreed by deraadt@ ok jsing@
Diffstat (limited to 'sys/dev/ic/uha.c')
-rw-r--r--sys/dev/ic/uha.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/dev/ic/uha.c b/sys/dev/ic/uha.c
index 1cbad497019..dc966d7de58 100644
--- a/sys/dev/ic/uha.c
+++ b/sys/dev/ic/uha.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uha.c,v 1.12 2009/02/16 21:19:07 miod Exp $ */
+/* $OpenBSD: uha.c,v 1.13 2009/08/29 13:58:51 jasper Exp $ */
/* $NetBSD: uha.c,v 1.3 1996/10/13 01:37:29 christos Exp $ */
#undef UHADEBUG
@@ -80,10 +80,6 @@
#include <dev/ic/uhareg.h>
#include <dev/ic/uhavar.h>
-#ifndef DDB
-#define Debugger() panic("should call debugger here (ultra14f.c)")
-#endif /* ! DDB */
-
#define KVTOPHYS(x) vtophys((vaddr_t)x)
integrate void uha_reset_mscp(struct uha_softc *, struct uha_mscp *);
@@ -299,8 +295,7 @@ uha_done(sc, mscp)
* into the xfer and call whoever started it
*/
if ((mscp->flags & MSCP_ALLOC) == 0) {
- printf("%s: exiting ccb not allocated!\n", sc->sc_dev.dv_xname);
- Debugger();
+ panic("%s: exiting ccb not allocated!\n", sc->sc_dev.dv_xname);
return;
}
if (xs->error == XS_NOERROR) {