diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-08 16:03:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-08 16:03:21 +0000 |
commit | ecb03ab485b4604de08c9dffd81a8d6284c8e214 (patch) | |
tree | e073f200df62ca92d9f051da4517b186857e1662 /sys/dev | |
parent | b33a32d8d666680ad5e7d2de26d93bd0bcdefaf9 (diff) |
ahb_debug should be inside #ifdef AHBDEBUG
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/eisa/aha1742.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/eisa/aha1742.c b/sys/dev/eisa/aha1742.c index bd5d3a9369a..2b28fea37ad 100644 --- a/sys/dev/eisa/aha1742.c +++ b/sys/dev/eisa/aha1742.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aha1742.c,v 1.24 2007/04/10 17:47:55 miod Exp $ */ +/* $OpenBSD: aha1742.c,v 1.25 2007/05/08 16:03:20 deraadt Exp $ */ /* $NetBSD: aha1742.c,v 1.61 1996/05/12 23:40:01 mycroft Exp $ */ /* @@ -297,7 +297,10 @@ void ahb_print_active_ecb(struct ahb_softc *); int ahbprint(void *, const char *); #define MAX_SLOTS 15 + +#ifdef AHBDEBUG int ahb_debug = 0; +#endif /* AHBDEBUG */ #define AHB_SHOWECBS 0x01 #define AHB_SHOWINTS 0x02 #define AHB_SHOWCMDS 0x04 |