aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/scsi/hpsa.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 97db2e5d6d16..2a90e9a63830 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -3334,11 +3334,11 @@ static __devinit int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev)
3334 msleep(HPSA_POST_RESET_PAUSE_MSECS); 3334 msleep(HPSA_POST_RESET_PAUSE_MSECS);
3335 3335
3336 /* Wait for board to become not ready, then ready. */ 3336 /* Wait for board to become not ready, then ready. */
3337 dev_info(&pdev->dev, "Waiting for board to become ready.\n"); 3337 dev_info(&pdev->dev, "Waiting for board to reset.\n");
3338 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_NOT_READY); 3338 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_NOT_READY);
3339 if (rc) 3339 if (rc)
3340 dev_warn(&pdev->dev, 3340 dev_warn(&pdev->dev,
3341 "failed waiting for board to become not ready\n"); 3341 "failed waiting for board to reset\n");
3342 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY); 3342 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
3343 if (rc) { 3343 if (rc) {
3344 dev_warn(&pdev->dev, 3344 dev_warn(&pdev->dev,
@@ -3837,6 +3837,7 @@ static __devinit int hpsa_init_reset_devices(struct pci_dev *pdev)
3837 return -ENODEV; 3837 return -ENODEV;
3838 3838
3839 /* Now try to get the controller to respond to a no-op */ 3839 /* Now try to get the controller to respond to a no-op */
3840 dev_warn(&pdev->dev, "Waiting for controller to respond to no-op\n");
3840 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) { 3841 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
3841 if (hpsa_noop(pdev) == 0) 3842 if (hpsa_noop(pdev) == 0)
3842 break; 3843 break;