diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-04-13 20:22:43 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-04-13 20:22:43 +0000 |
commit | f3e792f104c0b8370ff399b0bd3e1a5fdbd499d9 (patch) | |
tree | 2a68c0790778c719d2f7b9e8c433e068b038a8c8 /sys/dev/isa | |
parent | 0bb9c88bff2b91bc098d8809a53d431ef22969fc (diff) |
no Debugger() w/ no DDB defined
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/uha_isa.c | 6 |
1 files changed, 5 insertions, 1 deletions
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 *)); |