diff options
author | Tejun Heo <htejun@gmail.com> | 2006-04-11 09:16:45 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-04-11 13:12:46 -0400 |
commit | 987d2f05b396760517eef7cba66b2f415ac484f5 (patch) | |
tree | 72d7d4e31f5aa8df3c7988119fa0787632d01460 /drivers/scsi/sata_sil24.c | |
parent | 2bf2cb26b2512c6a609bb152982c388329bedff6 (diff) |
[PATCH] libata: make reset methods complain when they fail
Make reset methods complain loud when they fail.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/scsi/sata_sil24.c')
-rw-r--r-- | drivers/scsi/sata_sil24.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sata_sil24.c b/drivers/scsi/sata_sil24.c index 26d84e094b1d..a9506adadb6f 100644 --- a/drivers/scsi/sata_sil24.c +++ b/drivers/scsi/sata_sil24.c | |||
@@ -473,7 +473,7 @@ static int sil24_softreset(struct ata_port *ap, unsigned int *class) | |||
473 | writel(irq_enable, port + PORT_IRQ_ENABLE_SET); | 473 | writel(irq_enable, port + PORT_IRQ_ENABLE_SET); |
474 | 474 | ||
475 | if (!(irq_stat & PORT_IRQ_COMPLETE)) { | 475 | if (!(irq_stat & PORT_IRQ_COMPLETE)) { |
476 | DPRINTK("EXIT, srst failed\n"); | 476 | printk(KERN_ERR "ata%u: softreset failed (timeout)\n", ap->id); |
477 | return -EIO; | 477 | return -EIO; |
478 | } | 478 | } |
479 | 479 | ||