cciss: remove 30 second initial timeout on controller reset
Commit 5e4c91c84b
forgot to remove the
initial sleep, get rid of it.
Thanks to Randy Dunlap <randy.dunlap@oracle.com> for spotting this error.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
a1a15ac5f9
commit
5e18cfd04f
|
@ -3606,11 +3606,9 @@ static int __devinit cciss_init_one(struct pci_dev *pdev,
|
||||||
if (cciss_hard_reset_controller(pdev) || cciss_reset_msi(pdev))
|
if (cciss_hard_reset_controller(pdev) || cciss_reset_msi(pdev))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
/* Some devices (notably the HP Smart Array 5i Controller)
|
/* Now try to get the controller to respond to a no-op. Some
|
||||||
need a little pause here */
|
devices (notably the HP Smart Array 5i Controller) need
|
||||||
schedule_timeout_uninterruptible(30*HZ);
|
up to 30 seconds to respond. */
|
||||||
|
|
||||||
/* Now try to get the controller to respond to a no-op */
|
|
||||||
for (i=0; i<30; i++) {
|
for (i=0; i<30; i++) {
|
||||||
if (cciss_noop(pdev) == 0)
|
if (cciss_noop(pdev) == 0)
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue