Commit cef15384 authored by John Sperbeck's avatar John Sperbeck Committed by Martin K. Petersen

scsi: pm80xx: Initialize variable used as return status

In pm8001_task_exec(), if the PHY is down, then we return the current value
of 'rc'. We need to make sure it's initialized.

Link: https://lore.kernel.org/r/20191114100910.6153-4-deepak.ukey@microchip.comAcked-by: default avatarJack Wang <jinpu.wang@cloud.ionos.com>
Signed-off-by: default avatarJohn Sperbeck <jsperbeck@google.com>
Signed-off-by: default avatarDeepak Ukey <deepak.ukey@microchip.com>
Signed-off-by: default avatarViswas G <Viswas.G@microchip.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent e703977b
...@@ -384,7 +384,7 @@ static int pm8001_task_exec(struct sas_task *task, ...@@ -384,7 +384,7 @@ static int pm8001_task_exec(struct sas_task *task,
struct pm8001_port *port = NULL; struct pm8001_port *port = NULL;
struct sas_task *t = task; struct sas_task *t = task;
struct pm8001_ccb_info *ccb; struct pm8001_ccb_info *ccb;
u32 tag = 0xdeadbeef, rc, n_elem = 0; u32 tag = 0xdeadbeef, rc = 0, n_elem = 0;
unsigned long flags = 0; unsigned long flags = 0;
if (!dev->port) { if (!dev->port) {
......
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