diff options
| author | Alexander Motin <mav@FreeBSD.org> | 2017-04-24 10:16:12 +0000 |
|---|---|---|
| committer | Alexander Motin <mav@FreeBSD.org> | 2017-04-24 10:16:12 +0000 |
| commit | 1c779b2849bf139c59734ccbc2b3e079074ec060 (patch) | |
| tree | ac0718f7101ebdd1870f49176e0d3ca8b007d401 /sys/dev/isp | |
| parent | 5a5b6d1979d245ca3a7238024fcce5bec0e57b2b (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp')
| -rw-r--r-- | sys/dev/isp/isp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index d71a6357ba2d..c75b95ed55ec 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -1012,7 +1012,7 @@ isp_reset(ispsoftc_t *isp, int do_load_defaults) fwt = isp->isp_fwattr; if (IS_24XX(isp)) { - buf = FCPARAM(isp, 0)->isp_scratch; + buf = FCPARAM(isp, 0)->isp_scanscratch; ISP_SNPRINTF(buf, ISP_FC_SCRLEN, "Attributes:"); if (fwt & ISP2400_FW_ATTR_CLASS2) { fwt ^=ISP2400_FW_ATTR_CLASS2; @@ -1101,7 +1101,7 @@ isp_reset(ispsoftc_t *isp, int do_load_defaults) } isp_prt(isp, ISP_LOGCONFIG, "%s", buf); } else if (IS_FC(isp)) { - buf = FCPARAM(isp, 0)->isp_scratch; + buf = FCPARAM(isp, 0)->isp_scanscratch; ISP_SNPRINTF(buf, ISP_FC_SCRLEN, "Attributes:"); if (fwt & ISP_FW_ATTR_TMODE) { fwt ^=ISP_FW_ATTR_TMODE; |
