diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 1999-05-12 18:56:55 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 1999-05-12 18:56:55 +0000 |
| commit | 442257d9c5557b8064cf99933fe62a0c6efe5e4c (patch) | |
| tree | c7f504b84a7e6ef1aa48d4e7100db4b787019b43 /sys/dev/isp/isp.c | |
| parent | 255065aa3b891ae02ccc2ef626ef5c780c62e175 (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp/isp.c')
| -rw-r--r-- | sys/dev/isp/isp.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index 93947cddd847..9c6011d8587e 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -1,5 +1,5 @@ -/* $Id: isp.c,v 1.18 1999/04/14 17:37:36 mjacob Exp $ */ -/* release_5_11_99 */ +/* $Id: isp.c,v 1.19 1999/05/11 05:06:55 mjacob Exp $ */ +/* release_5_11_99+ */ /* * Machine and OS Independent (well, as best as possible) * code for the Qlogic ISP SCSI adapters. @@ -3593,6 +3593,8 @@ isp_update_bus(isp, bus) int get; if (sdp->isp_devparam[tgt].dev_enable == 0) { + PRINTF("%s: skipping update of target %d on bus %d\n", + isp->isp_name, tgt, bus); continue; } @@ -3631,6 +3633,10 @@ isp_update_bus(isp, bus) sdp->isp_devparam[tgt].cur_dflags |= (sdp->isp_devparam[tgt].dev_flags & DPARM_TQING); sdp->isp_devparam[tgt].dev_refresh = 1; + IDPRINTF(3, ("%s: bus %d set tgt %d flags 0x%x off 0x%x" + " period 0x%x\n", isp->isp_name, bus, tgt, + mbs.param[2], mbs.param[3] >> 8, + mbs.param[3] & 0xff)); get = 0; } else if (sdp->isp_devparam[tgt].dev_refresh) { mbs.param[0] = MBOX_GET_TARGET_PARAMS; |
