ide: fix EXABYTENEST handling in probe_for_drive()
Fix EXABYTENEST handling in probe_for_drive() (so drive->present is checked for "nested" device) and cleanup enable_nest(). Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
@@ -542,11 +542,6 @@ static void enable_nest (ide_drive_t *drive)
|
|||||||
printk(KERN_CONT "failed (status = 0x%02x)\n", stat);
|
printk(KERN_CONT "failed (status = 0x%02x)\n", stat);
|
||||||
else
|
else
|
||||||
printk(KERN_CONT "success\n");
|
printk(KERN_CONT "success\n");
|
||||||
|
|
||||||
/* if !(success||timed-out) */
|
|
||||||
if (do_probe(drive, ATA_CMD_ID_ATA) >= 2)
|
|
||||||
/* look for ATAPI device */
|
|
||||||
(void)do_probe(drive, ATA_CMD_ID_ATAPI);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -586,18 +581,21 @@ static inline u8 probe_for_drive (ide_drive_t *drive)
|
|||||||
strcpy(m, "UNKNOWN");
|
strcpy(m, "UNKNOWN");
|
||||||
|
|
||||||
/* skip probing? */
|
/* skip probing? */
|
||||||
if (!drive->noprobe)
|
if (!drive->noprobe) {
|
||||||
{
|
retry:
|
||||||
/* if !(success||timed-out) */
|
/* if !(success||timed-out) */
|
||||||
if (do_probe(drive, ATA_CMD_ID_ATA) >= 2)
|
if (do_probe(drive, ATA_CMD_ID_ATA) >= 2)
|
||||||
/* look for ATAPI device */
|
/* look for ATAPI device */
|
||||||
(void)do_probe(drive, ATA_CMD_ID_ATAPI);
|
(void)do_probe(drive, ATA_CMD_ID_ATAPI);
|
||||||
|
|
||||||
if (!drive->present)
|
if (!drive->present)
|
||||||
/* drive not found */
|
/* drive not found */
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (strstr(m, "E X A B Y T E N E S T"))
|
if (strstr(m, "E X A B Y T E N E S T")) {
|
||||||
enable_nest(drive);
|
enable_nest(drive);
|
||||||
|
goto retry;
|
||||||
|
}
|
||||||
|
|
||||||
/* identification failed? */
|
/* identification failed? */
|
||||||
if (!drive->id_read) {
|
if (!drive->id_read) {
|
||||||
|
Reference in New Issue
Block a user