aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/sata_mv.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
index 82632e7e34f0..05ff8c776497 100644
--- a/drivers/ata/sata_mv.c
+++ b/drivers/ata/sata_mv.c
@@ -2105,6 +2105,13 @@ static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
2105 printk(KERN_ERR DRV_NAME ": can't clear global reset\n"); 2105 printk(KERN_ERR DRV_NAME ": can't clear global reset\n");
2106 rc = 1; 2106 rc = 1;
2107 } 2107 }
2108 /*
2109 * Temporary: wait 3 seconds before port-probing can happen,
2110 * so that we don't miss finding sleepy SilXXXX port-multipliers.
2111 * This can go away once hotplug is fully/correctly implemented.
2112 */
2113 if (rc == 0)
2114 msleep(3000);
2108done: 2115done:
2109 return rc; 2116 return rc;
2110} 2117}