diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-04-22 23:29:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-04-22 23:29:19 +0000 |
commit | fded0067ae5c4c0a1c82217b877c21d010efa939 (patch) | |
tree | 647e026b3c5f749966cfea9a0f056b1b5690cefb /sys | |
parent | d34e32d940669d921455b5f28dc840308cac0a3f (diff) |
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
Diffstat (limited to 'sys')
-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 |