mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-14 09:11:27 +00:00
qla2x00t: Use %zd instead of %Zd
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7463 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
@@ -4847,7 +4847,7 @@ qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
|
||||
/* Validate firmware image by checking version. */
|
||||
if (blob->fw->size < 8 * sizeof(uint16_t)) {
|
||||
ql_log(ql_log_fatal, vha, 0x0085,
|
||||
"Unable to verify integrity of firmware image (%Zd).\n",
|
||||
"Unable to verify integrity of firmware image (%zd).\n",
|
||||
blob->fw->size);
|
||||
goto fail_fw_integrity;
|
||||
}
|
||||
@@ -4875,7 +4875,7 @@ qla2x00_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
|
||||
if (blob->fw->size < fwclen) {
|
||||
ql_log(ql_log_fatal, vha, 0x0088,
|
||||
"Unable to verify integrity of firmware image "
|
||||
"(%Zd).\n", blob->fw->size);
|
||||
"(%zd).\n", blob->fw->size);
|
||||
goto fail_fw_integrity;
|
||||
}
|
||||
|
||||
@@ -5074,7 +5074,7 @@ qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
|
||||
/* Validate firmware image by checking version. */
|
||||
if (blob->fw->size < 8 * sizeof(uint32_t)) {
|
||||
ql_log(ql_log_fatal, vha, 0x0093,
|
||||
"Unable to verify integrity of firmware image (%Zd).\n",
|
||||
"Unable to verify integrity of firmware image (%zd).\n",
|
||||
blob->fw->size);
|
||||
goto fail_fw_integrity;
|
||||
}
|
||||
@@ -5085,7 +5085,7 @@ qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
|
||||
(dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
|
||||
dcode[3] == 0)) {
|
||||
ql_log(ql_log_fatal, vha, 0x0094,
|
||||
"Unable to verify integrity of firmware image (%Zd).\n",
|
||||
"Unable to verify integrity of firmware image (%zd).\n",
|
||||
blob->fw->size);
|
||||
ql_log(ql_log_fatal, vha, 0x0095,
|
||||
"Firmware data: %08x %08x %08x %08x.\n",
|
||||
@@ -5103,7 +5103,7 @@ qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
|
||||
if (blob->fw->size < fwclen) {
|
||||
ql_log(ql_log_fatal, vha, 0x0096,
|
||||
"Unable to verify integrity of firmware image "
|
||||
"(%Zd).\n", blob->fw->size);
|
||||
"(%zd).\n", blob->fw->size);
|
||||
|
||||
goto fail_fw_integrity;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user