From: mickey Date: Sun, 13 Apr 1997 20:22:38 +0000 (+0000) Subject: no Debugger() w/ no DDB defined X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=bf1d13964a59e43dab0e9e83fbc06f725898033a;p=openbsd no Debugger() w/ no DDB defined --- diff --git a/sys/dev/eisa/uha_eisa.c b/sys/dev/eisa/uha_eisa.c index 53d03f41238..d8df90a1d39 100644 --- a/sys/dev/eisa/uha_eisa.c +++ b/sys/dev/eisa/uha_eisa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uha_eisa.c,v 1.1 1996/11/28 23:27:42 niklas Exp $ */ +/* $OpenBSD: uha_eisa.c,v 1.2 1997/04/13 20:22:38 mickey Exp $ */ /* $NetBSD: uha_eisa.c,v 1.5 1996/10/21 22:31:07 thorpej Exp $ */ /* @@ -53,6 +53,10 @@ #define UHA_EISA_SLOT_OFFSET 0xc80 #define UHA_EISA_IOSIZE 0x020 +#ifndef DDB +#define Debugger() panic("should call debugger here (uha_eisa.c)") +#endif + int uha_eisa_match __P((struct device *, void *, void *)); void uha_eisa_attach __P((struct device *, struct device *, void *)); diff --git a/sys/dev/isa/uha_isa.c b/sys/dev/isa/uha_isa.c index c1c723915c3..f8577c6e5d4 100644 --- a/sys/dev/isa/uha_isa.c +++ b/sys/dev/isa/uha_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uha_isa.c,v 1.1 1996/11/29 23:51:14 niklas Exp $ */ +/* $OpenBSD: uha_isa.c,v 1.2 1997/04/13 20:22:42 mickey Exp $ */ /* $NetBSD: uha_isa.c,v 1.5 1996/10/21 22:41:21 thorpej Exp $ */ /* @@ -52,6 +52,10 @@ #define UHA_ISA_IOSIZE 16 +#ifndef DDB +#define Debugger() panic("should call debugger here (uha_isa.c)") +#endif + int uha_isa_probe __P((struct device *, void *, void *)); void uha_isa_attach __P((struct device *, struct device *, void *));