diff options
author | Tejun Heo <htejun@gmail.com> | 2008-04-07 12:25:35 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-04-17 15:44:25 -0400 |
commit | 2a0c15ca39f5881aa1b472ca856bb7a2e584ece7 (patch) | |
tree | 28fe9136db8016720c272ba39df3a3b43a9715e2 /drivers/ata/sata_inic162x.c | |
parent | e50e3ce5e70e36e6069a8cc8292df76058fa9e23 (diff) |
libata: kill dead code paths in reset path
Some code paths which had been made obsolete by recent reset
simplification were still around. Kill them.
* ata_eh_reset() checked for ATA_DEV_UNKNOWN to determine
classification failure. This is no longer applicable.
* ata_do_reset() should convert ATA_DEV_UNKNOWN to ATA_DEV_NONE
regardless of reset result (e.g. -EAGAIN).
* LLDs don't need to convert ATA_DEV_UNKNOWN to ATA_DEV_NONE.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/sata_inic162x.c')
-rw-r--r-- | drivers/ata/sata_inic162x.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/ata/sata_inic162x.c b/drivers/ata/sata_inic162x.c index 9f47d0022453..d27bb9a2568f 100644 --- a/drivers/ata/sata_inic162x.c +++ b/drivers/ata/sata_inic162x.c | |||
@@ -428,8 +428,6 @@ static int inic_hardreset(struct ata_link *link, unsigned int *class, | |||
428 | 428 | ||
429 | ata_sff_tf_read(ap, &tf); | 429 | ata_sff_tf_read(ap, &tf); |
430 | *class = ata_dev_classify(&tf); | 430 | *class = ata_dev_classify(&tf); |
431 | if (*class == ATA_DEV_UNKNOWN) | ||
432 | *class = ATA_DEV_NONE; | ||
433 | } | 431 | } |
434 | 432 | ||
435 | return 0; | 433 | return 0; |