From 475dafd3c2140299b29d3c9671227544a060148c Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 21 Apr 2019 14:56:58 +0000 Subject: [PATCH] qla2x00t-32gbit: Fix formatting of a port name in qla2x00_reg_remote_port() Fixes: d20be1897c5c / r8166 ("qla2x00t-32gbit: Avoid using the format specifier %*phC") git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@8263 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- qla2x00t-32gbit/qla_init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qla2x00t-32gbit/qla_init.c b/qla2x00t-32gbit/qla_init.c index 6143b1ad9..7bf6ca535 100644 --- a/qla2x00t-32gbit/qla_init.c +++ b/qla2x00t-32gbit/qla_init.c @@ -5280,8 +5280,7 @@ qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport) if (fcport->port_type == FCT_TARGET) rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET; - ql_dbg(ql_dbg_disc, vha, 0x20ee, - "%s %8phN. rport %p is %s mode\n", + ql_dbg(ql_dbg_disc, vha, 0x20ee, "%s %s. rport %p is %s mode\n", __func__, wwn_to_str(fcport->port_name), rport, (fcport->port_type == FCT_TARGET) ? "tgt" : "ini");