[SCSI] stex: add value check in hard reset routine
During hard reset, an all-1 value from PCI_COMMAND should be invalid. Signed-off-by: Ed Lin <ed.lin@promise.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
4eea9dc45f
commit
47c4f997c7
@ -1041,7 +1041,7 @@ static void stex_hard_reset(struct st_hba *hba)
|
|||||||
|
|
||||||
for (i = 0; i < MU_MAX_DELAY_TIME; i++) {
|
for (i = 0; i < MU_MAX_DELAY_TIME; i++) {
|
||||||
pci_read_config_word(hba->pdev, PCI_COMMAND, &pci_cmd);
|
pci_read_config_word(hba->pdev, PCI_COMMAND, &pci_cmd);
|
||||||
if (pci_cmd & PCI_COMMAND_MASTER)
|
if (pci_cmd != 0xffff && (pci_cmd & PCI_COMMAND_MASTER))
|
||||||
break;
|
break;
|
||||||
msleep(1);
|
msleep(1);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user