Skip to content

Commit

Permalink
ide: ide_dev_has_iordy() -> ata_id_has_iordy()
Browse files Browse the repository at this point in the history
* Remove (id[ATA_ID_FIELD_VALID] & 2) check from ide_dev_has_iordy()
  (it is for validity of words 64-70, IORDY is in word 49).

* ide_dev_has_iordy() -> ata_id_has_iordy()

Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Oct 10, 2008
1 parent 9fa295e commit 5d5870f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion drivers/ide/pci/sl82c105.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static unsigned int get_pio_timings(ide_drive_t *drive, u8 pio)
if (cmd_off == 0)
cmd_off = 1;

if (pio > 2 || ide_dev_has_iordy(drive->id))
if (pio > 2 || ata_id_has_iordy(drive->id))
iordy = 0x40;

return (cmd_on - 1) << 8 | (cmd_off - 1) | iordy;
Expand Down
5 changes: 0 additions & 5 deletions include/linux/ide.h
Original file line number Diff line number Diff line change
Expand Up @@ -1382,11 +1382,6 @@ const char *ide_xfer_verbose(u8 mode);
extern void ide_toggle_bounce(ide_drive_t *drive, int on);
extern int ide_set_xfer_rate(ide_drive_t *drive, u8 rate);

static inline int ide_dev_has_iordy(u16 *id)
{
return ((id[ATA_ID_FIELD_VALID] & 2) && ata_id_has_iordy(id)) ? 1 : 0;
}

static inline int ide_dev_is_sata(u16 *id)
{
/*
Expand Down

0 comments on commit 5d5870f

Please sign in to comment.