|
@@ -6967,12 +6967,11 @@ int ata_host_start(struct ata_host *host)
|
|
if (ap->ops->port_start) {
|
|
if (ap->ops->port_start) {
|
|
rc = ap->ops->port_start(ap);
|
|
rc = ap->ops->port_start(ap);
|
|
if (rc) {
|
|
if (rc) {
|
|
- ata_port_printk(ap, KERN_ERR, "failed to "
|
|
|
|
- "start port (errno=%d)\n", rc);
|
|
|
|
|
|
+ if (rc != -ENODEV)
|
|
|
|
+ dev_printk(KERN_ERR, host->dev, "failed to start port %d (errno=%d)\n", i, rc);
|
|
goto err_out;
|
|
goto err_out;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
ata_eh_freeze_port(ap);
|
|
ata_eh_freeze_port(ap);
|
|
}
|
|
}
|
|
|
|
|