diff options
author | 2011-04-22 23:29:18 +0000 | |
---|---|---|
committer | 2011-04-22 23:29:18 +0000 | |
commit | df638646fb649f8118add3b6b60768a763f2839b (patch) | |
tree | 5f08fa62c9b05ad196a90f2e121d5aca5766c942 | |
parent | delete a bogus blank line (diff) | |
download | wireguard-openbsd-df638646fb649f8118add3b6b60768a763f2839b.tar.xz wireguard-openbsd-df638646fb649f8118add3b6b60768a763f2839b.zip |
Turning on SCSIDEBUG (for debugging other drivers, of course) should
not make these drivers spew millions of lines of output.
spotted as missing by miod
-rw-r--r-- | sys/arch/sparc/dev/isp_sbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/isp_sbus.c b/sys/arch/sparc/dev/isp_sbus.c index 93ad2838e43..49c6f3b5706 100644 --- a/sys/arch/sparc/dev/isp_sbus.c +++ b/sys/arch/sparc/dev/isp_sbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_sbus.c,v 1.30 2010/11/11 17:46:58 miod Exp $ */ +/* $OpenBSD: isp_sbus.c,v 1.31 2011/04/22 23:29:18 deraadt Exp $ */ /* * SBus specific probe and attach routines for Qlogic ISP SCSI adapters. * @@ -290,7 +290,7 @@ isp_sbus_attach(struct device *parent, struct device *self, void *aux) isp->isp_dblev = ISP_LOGDEFAULT; #else isp->isp_dblev = ISP_LOGWARN|ISP_LOGERR; -#ifdef SCSIDEBUG +#if 0 isp->isp_dblev |= ISP_LOGDEBUG1|ISP_LOGDEBUG2; #endif #ifdef DEBUG |