Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 133401
b: refs/heads/master
c: 62bd044
h: refs/heads/master
i:
  133399: 76c6f2a
v: v3
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Mar 24, 2009
1 parent 7139fae commit 469a4aa
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2f40c9b0b65b5635e2e13dfa068bd56fe7a8ff98
refs/heads/master: 62bd0441a60b0499db339b3dc1be039f8ed9fd35
21 changes: 18 additions & 3 deletions trunk/drivers/ide/ide-iops.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ int ide_driveid_update(ide_drive_t *drive)
const struct ide_tp_ops *tp_ops = hwif->tp_ops;
u16 *id;
unsigned long flags;
int rc;
u8 uninitialized_var(s);
int use_altstatus = 0, rc;
u8 a, uninitialized_var(s);

id = kmalloc(SECTOR_SIZE, GFP_ATOMIC);
if (id == NULL)
Expand All @@ -308,9 +308,24 @@ int ide_driveid_update(ide_drive_t *drive)
SELECT_MASK(drive, 1);
tp_ops->set_irq(hwif, 0);
msleep(50);

if (hwif->io_ports.ctl_addr &&
(hwif->host_flags & IDE_HFLAG_BROKEN_ALTSTATUS) == 0) {
a = tp_ops->read_altstatus(hwif);
s = tp_ops->read_status(hwif);
if ((a ^ s) & ~ATA_IDX)
/* ancient Seagate drives, broken interfaces */
printk(KERN_INFO "%s: probing with STATUS(0x%02x) "
"instead of ALTSTATUS(0x%02x)\n",
drive->name, s, a);
else
/* use non-intrusive polling */
use_altstatus = 1;
}

tp_ops->exec_command(hwif, ATA_CMD_ID_ATA);

if (ide_busy_sleep(hwif, WAIT_WORSTCASE, 1)) {
if (ide_busy_sleep(hwif, WAIT_WORSTCASE, use_altstatus)) {
rc = 1;
goto out_err;
}
Expand Down

0 comments on commit 469a4aa

Please sign in to comment.