From bf1d13964a59e43dab0e9e83fbc06f725898033a Mon Sep 17 00:00:00 2001 From: mickey Date: Sun, 13 Apr 1997 20:22:38 +0000 Subject: [PATCH] no Debugger() w/ no DDB defined --- sys/dev/eisa/uha_eisa.c | 6 +++++- sys/dev/isa/uha_isa.c | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) 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 *)); -- 2.20.1