diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2009-08-29 13:58:52 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2009-08-29 13:58:52 +0000 |
commit | 2a674c0321ab1d6c4d86181028fa51dc3dda5e31 (patch) | |
tree | f7aa101e3d4aa304f8a8285b8b81bdbb9483813e /sys/dev/ic/adw.c | |
parent | d95dbebd76898e9673de6acc5cd9e6b4ed875cb5 (diff) |
remove more unneeded Debugger() calls from dev/
agreed by deraadt@
ok jsing@
Diffstat (limited to 'sys/dev/ic/adw.c')
-rw-r--r-- | sys/dev/ic/adw.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/dev/ic/adw.c b/sys/dev/ic/adw.c index 14a429db7b8..f90c3ac6aba 100644 --- a/sys/dev/ic/adw.c +++ b/sys/dev/ic/adw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adw.c,v 1.38 2009/02/16 21:19:06 miod Exp $ */ +/* $OpenBSD: adw.c,v 1.39 2009/08/29 13:58:51 jasper Exp $ */ /* $NetBSD: adw.c,v 1.23 2000/05/27 18:24:50 dante Exp $ */ /* @@ -54,10 +54,6 @@ #include <dev/microcode/adw/adwmcode.h> #include <dev/ic/adw.h> -#ifndef DDB -#define Debugger() panic("should call debugger here (adw.c)") -#endif /* ! DDB */ - /******************************************************************************/ @@ -1058,9 +1054,8 @@ adw_isr_callback(sc, scsiq) TAILQ_REMOVE(&sc->sc_pending_ccb, ccb, chain); if ((ccb->flags & CCB_ALLOC) == 0) { - printf("%s: unallocated ccb found on pending list!\n", + panic("%s: unallocated ccb found on pending list!\n", sc->sc_dev.dv_xname); - Debugger(); adw_free_ccb(sc, ccb); return; } |