diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-01-24 15:49:32 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-01-24 15:49:32 +0000 |
commit | a40cb170124f5fc9e25d45a1bd3d0e2861a6ff5c (patch) | |
tree | fd72ffe1c2625363c4129b90eaaba02bf0d901e9 /sys/dev/ic | |
parent | d2fb970cb8f662eed0c2c03fbc7405f0eceffd25 (diff) |
Do *not* set scsi_link flags to SCSIDEBUG_LEVEL for every ahc device.
Let scsi_probedev() set the flags based on scsidebug_targets and
scsidebug_luns when a device scsi link is created.
Elminates indisciminate flood of debug info for ahc scsi buses and solves
mystery of why ahc devices produced info when other devices were silent.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/aic7xxx_openbsd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ic/aic7xxx_openbsd.c b/sys/dev/ic/aic7xxx_openbsd.c index 540ca9beb66..e0367af2ae9 100644 --- a/sys/dev/ic/aic7xxx_openbsd.c +++ b/sys/dev/ic/aic7xxx_openbsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aic7xxx_openbsd.c,v 1.20 2004/01/17 14:40:55 krw Exp $ */ +/* $OpenBSD: aic7xxx_openbsd.c,v 1.21 2004/01/24 15:49:31 krw Exp $ */ /* $NetBSD: aic7xxx_osm.c,v 1.14 2003/11/02 11:07:44 wiz Exp $ */ /* @@ -107,7 +107,6 @@ ahc_attach(struct ahc_softc *ahc) ahc->sc_channel.adapter = &ahc_switch; ahc->sc_channel.openings = 16; ahc->sc_channel.device = &ahc_dev; - ahc->sc_channel.flags = SCSIDEBUG_LEVEL; if (ahc->features & AHC_TWIN) { /* Configure the second scsi bus */ |