diff options
author | 1997-04-13 20:22:38 +0000 | |
---|---|---|
committer | 1997-04-13 20:22:38 +0000 | |
commit | bf1d13964a59e43dab0e9e83fbc06f725898033a (patch) | |
tree | 252bf79d336c777f8ecdea1b1b0fadf394c303eb | |
parent | make it compile again (diff) | |
download | wireguard-openbsd-bf1d13964a59e43dab0e9e83fbc06f725898033a.tar.xz wireguard-openbsd-bf1d13964a59e43dab0e9e83fbc06f725898033a.zip |
no Debugger() w/ no DDB defined
-rw-r--r-- | sys/dev/eisa/uha_eisa.c | 6 | ||||
-rw-r--r-- | 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 *)); |