scsi: smartpqi: eliminate redundant error messages

eliminate redundant error message during initialization
if the controller has crashed.

Reviewed-by: Scott Benesh <scott.benesh@microsemi.com>
Signed-off-by: Kevin Barnett <kevin.barnett@microsemi.com>
Signed-off-by: Don Brace <don.brace@microsemi.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
Kevin Barnett 2017-05-03 18:53:36 -05:00 committed by Martin K. Petersen
parent d91d7820d3
commit 8845fdfa92
2 changed files with 5 additions and 5 deletions

View File

@ -5796,11 +5796,8 @@ static int pqi_ctrl_init(struct pqi_ctrl_info *ctrl_info)
* commands. * commands.
*/ */
rc = sis_wait_for_ctrl_ready(ctrl_info); rc = sis_wait_for_ctrl_ready(ctrl_info);
if (rc) { if (rc)
dev_err(&ctrl_info->pci_dev->dev,
"error initializing SIS interface\n");
return rc; return rc;
}
/* /*
* Get the controller properties. This allows us to determine * Get the controller properties. This allows us to determine

View File

@ -102,8 +102,11 @@ static int sis_wait_for_ctrl_ready_with_timeout(struct pqi_ctrl_info *ctrl_info,
if (status & SIS_CTRL_KERNEL_UP) if (status & SIS_CTRL_KERNEL_UP)
break; break;
} }
if (time_after(jiffies, timeout)) if (time_after(jiffies, timeout)) {
dev_err(&ctrl_info->pci_dev->dev,
"controller not ready\n");
return -ETIMEDOUT; return -ETIMEDOUT;
}
msleep(SIS_CTRL_READY_POLL_INTERVAL_MSECS); msleep(SIS_CTRL_READY_POLL_INTERVAL_MSECS);
} }