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/pci | |
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/pci')
-rw-r--r-- | sys/dev/pci/isp_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/isp_pci.c b/sys/dev/pci/isp_pci.c index 608ef8f88b6..52e7401ad35 100644 --- a/sys/dev/pci/isp_pci.c +++ b/sys/dev/pci/isp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_pci.c,v 1.54 2011/04/03 15:36:03 jasper Exp $ */ +/* $OpenBSD: isp_pci.c,v 1.55 2011/04/22 23:19:54 deraadt Exp $ */ /* $FreeBSD: src/sys/dev/isp/isp_pci.c,v 1.148 2007/06/26 23:08:57 mjacob Exp $*/ /*- * Copyright (c) 1997-2006 by Matthew Jacob @@ -739,7 +739,7 @@ isp_pci_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 |