Commit e15c7452 authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: target: Fix two format specifiers

Use format specifier '%u' to format the u32 data type instead of '%hu'.

Link: https://lore.kernel.org/r/20210415220826.29438-19-bvanassche@acm.org
Cc: Mike Christie <michael.christie@oracle.com>
Reviewed-by: default avatarMike Christie <michael.christie@oracle.com>
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 15df85e0
...@@ -1637,8 +1637,7 @@ core_scsi3_decode_spec_i_port( ...@@ -1637,8 +1637,7 @@ core_scsi3_decode_spec_i_port(
} }
dest_tpg = tmp_tpg; dest_tpg = tmp_tpg;
pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node:" pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node: %s Port RTPI: %u\n",
" %s Port RTPI: %hu\n",
dest_tpg->se_tpg_tfo->fabric_name, dest_tpg->se_tpg_tfo->fabric_name,
dest_node_acl->initiatorname, dest_rtpi); dest_node_acl->initiatorname, dest_rtpi);
...@@ -1675,8 +1674,7 @@ core_scsi3_decode_spec_i_port( ...@@ -1675,8 +1674,7 @@ core_scsi3_decode_spec_i_port(
dest_se_deve = core_get_se_deve_from_rtpi(dest_node_acl, dest_se_deve = core_get_se_deve_from_rtpi(dest_node_acl,
dest_rtpi); dest_rtpi);
if (!dest_se_deve) { if (!dest_se_deve) {
pr_err("Unable to locate %s dest_se_deve" pr_err("Unable to locate %s dest_se_deve from destination RTPI: %u\n",
" from destination RTPI: %hu\n",
dest_tpg->se_tpg_tfo->fabric_name, dest_tpg->se_tpg_tfo->fabric_name,
dest_rtpi); dest_rtpi);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment