summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2006-07-03 20:56:48 +0000
committermjacob <mjacob@FreeBSD.org>2006-07-03 20:56:48 +0000
commitc2e8dadb45e2cea1a205d6aa482791723efd01c9 (patch)
tree91b5004f1c624d7920ba933ac670c92a18d46958
parent55246068270ab478aad9b7a2cd946354e3861034 (diff)
downloadFreeBSD-src-c2e8dadb45e2cea1a205d6aa482791723efd01c9.zip
FreeBSD-src-c2e8dadb45e2cea1a205d6aa482791723efd01c9.tar.gz
What the heck - make the last (most recent) 2200 f/w also do
Hard Loop acquisition.
-rw-r--r--sys/dev/isp/isp.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c
index 99c52db..e66a393 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);
}
OpenPOWER on IntegriCloud