diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-04-22 23:19:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-04-22 23:19:56 +0000 |
commit | 0282348da338305e2fdd0cd873526889037b951e (patch) | |
tree | 2726766d235239252c8f1a4324b916e818d031cf /sys/dev/sbus | |
parent | 2003c04f036bea3bcd45cfb46c0f2ad8e8c47da5 (diff) |
Turning on SCSIDEBUG (for debugging other drivers, of course) should
not make these drivers spew millions of lines of output.
ok krw
Diffstat (limited to 'sys/dev/sbus')
-rw-r--r-- | sys/dev/sbus/isp_sbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sbus/isp_sbus.c b/sys/dev/sbus/isp_sbus.c index 0325da989a0..39bd2ef8bff 100644 --- a/sys/dev/sbus/isp_sbus.c +++ b/sys/dev/sbus/isp_sbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_sbus.c,v 1.17 2009/09/02 16:05:16 kettenis Exp $ */ +/* $OpenBSD: isp_sbus.c,v 1.18 2011/04/22 23:19:55 deraadt Exp $ */ /* $NetBSD: isp_sbus.c,v 1.46 2001/09/26 20:53:14 eeh Exp $ */ /* * SBus specific probe and attach routines for QLogic ISP SCSI adapters. @@ -287,7 +287,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 |