diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2006-07-03 20:56:48 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2006-07-03 20:56:48 +0000 |
| commit | 6cc12d1bb6d4db4ca6a79b9f9bb0e2f70fe8e1db (patch) | |
| tree | 91b5004f1c624d7920ba933ac670c92a18d46958 /sys/dev/isp | |
| parent | 4b19419ee741c3ef44d64d23572af858c87cf1f6 (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp')
| -rw-r--r-- | sys/dev/isp/isp.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index 99c52db1bb67..e66a39376090 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -1329,7 +1329,11 @@ isp_fibre_init(ispsoftc_t *isp) icbp->icb_hardaddr = 0; } - if (IS_2322(isp) || IS_24XX(isp)) { + /* + * Our life seems so much better with 2200s and later with + * the latest f/w if we set Hard Address. + */ + if (ISP_FW_NEWER_THAN(isp, 2, 2, 5)) { icbp->icb_fwoptions |= ICBOPT_HARD_ADDRESS; } @@ -2238,7 +2242,7 @@ isp_scan_loop(ispsoftc_t *isp) hival = FC_PORT_ID; break; default: - isp_prt(isp, ISP_LOGDEBUG0, "no loop scasn\n"); + isp_prt(isp, ISP_LOGDEBUG0, "no loop topology to scan"); fcp->isp_loopstate = LOOP_LSCAN_DONE; return (0); } |
