]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
scsi: qla2xxx: Fix compile warning
authorHimanshu Madhani <himanshu.madhani@cavium.com>
Tue, 6 Jun 2017 20:55:23 +0000 (13:55 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 13 Jun 2017 01:13:54 +0000 (21:13 -0400)
Fixes following 0-day kernel build warnings:

drivers/scsi/qla2xxx/qla_init.c:6407:50: warning: format '%lx' expects
argument of type 'long unsigned int', but argument 5 has type 'unsigned
int' [-Wformat=]
drivers/scsi/qla2xxx/qla_init.c:6709:50: warning: format '%lx'
expects argument of type 'long unsigned int', but argument 5 has
type 'unsigned int' [-Wformat=]

Fixes: b95b9452aacf ("scsi: qla2xxx: Fix crash due to mismatch mumber of Q-pair creation for Multi queue")
Signed-off-by: Himanshu Madhani <himanshu.madhani@cavium.com>
Signed-off-by: Giridhar Malavali <giridhar.malavali@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qla2xxx/qla_init.c

index 436968ad4484ab382599838cd3a244de4c397de1..730e7fe4344ad6ecca752efe497044933bf2c0bc 100644 (file)
@@ -6404,7 +6404,7 @@ qla24xx_load_risc_flash(scsi_qla_host_t *vha, uint32_t *srisc_addr,
            "-> template size %x bytes\n", dlen);
        if (dlen > risc_size * sizeof(*dcode)) {
                ql_log(ql_log_warn, vha, 0x0167,
-                   "Failed fwdump template exceeds array by %lx bytes\n",
+                   "Failed fwdump template exceeds array by %zx bytes\n",
                    (size_t)(dlen - risc_size * sizeof(*dcode)));
                goto default_template;
        }
@@ -6706,7 +6706,7 @@ qla24xx_load_risc_blob(scsi_qla_host_t *vha, uint32_t *srisc_addr)
            "-> template size %x bytes\n", dlen);
        if (dlen > risc_size * sizeof(*fwcode)) {
                ql_log(ql_log_warn, vha, 0x0177,
-                   "Failed fwdump template exceeds array by %lx bytes\n",
+                   "Failed fwdump template exceeds array by %zx bytes\n",
                    (size_t)(dlen - risc_size * sizeof(*fwcode)));
                goto default_template;
        }