scsi: myrb: Remove redundant assignment to variable timeout
The variable timeout has been initialized with a value '0'. The assignment before while loop is redundant. Remove it. Link: https://lore.kernel.org/r/20200929022458.40652-1-jingxiangfeng@huawei.com Signed-off-by: Jing Xiangfeng <jingxiangfeng@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
f0f6c3a4fc
commit
5f6dcb55a7
|
@ -2732,7 +2732,6 @@ static int DAC960_LA_hw_init(struct pci_dev *pdev,
|
||||||
DAC960_LA_disable_intr(base);
|
DAC960_LA_disable_intr(base);
|
||||||
DAC960_LA_ack_hw_mbox_status(base);
|
DAC960_LA_ack_hw_mbox_status(base);
|
||||||
udelay(1000);
|
udelay(1000);
|
||||||
timeout = 0;
|
|
||||||
while (DAC960_LA_init_in_progress(base) &&
|
while (DAC960_LA_init_in_progress(base) &&
|
||||||
timeout < MYRB_MAILBOX_TIMEOUT) {
|
timeout < MYRB_MAILBOX_TIMEOUT) {
|
||||||
if (DAC960_LA_read_error_status(base, &error,
|
if (DAC960_LA_read_error_status(base, &error,
|
||||||
|
|
Loading…
Reference in New Issue