diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-10 16:39:30 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-10 16:39:30 -0400 |
commit | 367d7e78dd48cf6ad35182a99d97abb5486e040e (patch) | |
tree | 70635fc87e0f094018870346577b3d84caefe61c /drivers/ide | |
parent | 5d5870f0a26e2304c4a82592870c5bc88017f7c9 (diff) |
ide: ide_dev_is_sata() -> ata_id_is_sata()
* Use optimized ATA version check from Sergei in ata_id_is_sata().
* ide_dev_is_sata() -> ata_id_is_sata()
Cc: Jeff Garzik <jgarzik@pobox.com>
Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/ide-iops.c | 2 | ||||
-rw-r--r-- | drivers/ide/pci/hpt366.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index 6256c2df62cc..0a2fd3b37ac4 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c | |||
@@ -630,7 +630,7 @@ u8 eighty_ninty_three (ide_drive_t *drive) | |||
630 | printk(KERN_DEBUG "%s: skipping word 93 validity check\n", | 630 | printk(KERN_DEBUG "%s: skipping word 93 validity check\n", |
631 | drive->name); | 631 | drive->name); |
632 | 632 | ||
633 | if (ide_dev_is_sata(id) && !ivb) | 633 | if (ata_id_is_sata(id) && !ivb) |
634 | return 1; | 634 | return 1; |
635 | 635 | ||
636 | if (hwif->cbl != ATA_CBL_PATA80 && !ivb) | 636 | if (hwif->cbl != ATA_CBL_PATA80 && !ivb) |
diff --git a/drivers/ide/pci/hpt366.c b/drivers/ide/pci/hpt366.c index d706eb6b8acd..9056e3acc78b 100644 --- a/drivers/ide/pci/hpt366.c +++ b/drivers/ide/pci/hpt366.c | |||
@@ -654,7 +654,7 @@ static u8 hpt3xx_udma_filter(ide_drive_t *drive) | |||
654 | case HPT372A: | 654 | case HPT372A: |
655 | case HPT372N: | 655 | case HPT372N: |
656 | case HPT374 : | 656 | case HPT374 : |
657 | if (ide_dev_is_sata(drive->id)) | 657 | if (ata_id_is_sata(drive->id)) |
658 | mask &= ~0x0e; | 658 | mask &= ~0x0e; |
659 | /* Fall thru */ | 659 | /* Fall thru */ |
660 | default: | 660 | default: |
@@ -674,7 +674,7 @@ static u8 hpt3xx_mdma_filter(ide_drive_t *drive) | |||
674 | case HPT372A: | 674 | case HPT372A: |
675 | case HPT372N: | 675 | case HPT372N: |
676 | case HPT374 : | 676 | case HPT374 : |
677 | if (ide_dev_is_sata(drive->id)) | 677 | if (ata_id_is_sata(drive->id)) |
678 | return 0x00; | 678 | return 0x00; |
679 | /* Fall thru */ | 679 | /* Fall thru */ |
680 | default: | 680 | default: |