From 955d53eedc3964e87b6a505aef747cba5bcaa69b Mon Sep 17 00:00:00 2001 From: Alexander Motin Date: Tue, 17 Nov 2015 16:46:05 +0000 Subject: [PATCH] Cosmetic addition to r290993. --- sys/dev/isp/isp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index c0481a3813f..3710a5217be 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -2802,7 +2802,9 @@ isp_fclink_test(ispsoftc_t *isp, int chan, int usdelay) * If we haven't gone to 'ready' state, return. */ if (fcp->isp_fwstate != FW_READY) { - isp_prt(isp, ISP_LOG_SANCFG, "%s: chan %d not at FW_READY state", __func__, chan); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Firmware is not ready (%s)", + chan, isp_fc_fw_statename(fcp->isp_fwstate)); return (-1); }