diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2021-05-06 20:38:20 +0200 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2021-05-15 04:31:25 +0200 |
commit | 9959d45166faaa75d9d4bf2ad8b945dfbe9888f8 (patch) | |
tree | f2fa815775e461d423a1195c3781cd0b13102648 /drivers | |
parent | scsi: target: cxgbit: Unmap DMA buffer before calling target_execute_cmd() (diff) | |
download | linux-9959d45166faaa75d9d4bf2ad8b945dfbe9888f8.tar.xz linux-9959d45166faaa75d9d4bf2ad8b945dfbe9888f8.zip |
scsi: snic: Fix an error message
'ret' is known to be 0 here. No error code is available so just remove
'ret' from the error message.
While at it, change the word "Queuing" into "Init" which looks more
appropriate.
Link: https://lore.kernel.org/r/3b9d5d767e09d03a07bede293a6ba32e3735cd1a.1620326191.git.christophe.jaillet@wanadoo.fr
Fixes: c8806b6c9e82 ("snic: driver for Cisco SCSI HBA")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/snic/snic_ctl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/scsi/snic/snic_ctl.c b/drivers/scsi/snic/snic_ctl.c index 4cd86115cfb2..703f229862fc 100644 --- a/drivers/scsi/snic/snic_ctl.c +++ b/drivers/scsi/snic/snic_ctl.c @@ -114,10 +114,7 @@ snic_queue_exch_ver_req(struct snic *snic) rqi = snic_req_init(snic, 0); if (!rqi) { - SNIC_HOST_ERR(snic->shost, - "Queuing Exch Ver Req failed, err = %d\n", - ret); - + SNIC_HOST_ERR(snic->shost, "Init Exch Ver Req failed\n"); ret = -ENOMEM; goto error; } |