diff options
Diffstat (limited to 'drivers/ata/pata_hpt366.c')
-rw-r--r-- | drivers/ata/pata_hpt366.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/pata_hpt366.c b/drivers/ata/pata_hpt366.c index e9ad4eba0670..c3e5ea35e0f8 100644 --- a/drivers/ata/pata_hpt366.c +++ b/drivers/ata/pata_hpt366.c | |||
@@ -175,7 +175,7 @@ static int hpt_dma_blacklisted(const struct ata_device *dev, char *modestr, cons | |||
175 | * Block UDMA on devices that cause trouble with this controller. | 175 | * Block UDMA on devices that cause trouble with this controller. |
176 | */ | 176 | */ |
177 | 177 | ||
178 | static unsigned long hpt366_filter(const struct ata_port *ap, struct ata_device *adev, unsigned long mask) | 178 | static unsigned long hpt366_filter(struct ata_device *adev, unsigned long mask) |
179 | { | 179 | { |
180 | if (adev->class == ATA_DEV_ATA) { | 180 | if (adev->class == ATA_DEV_ATA) { |
181 | if (hpt_dma_blacklisted(adev, "UDMA", bad_ata33)) | 181 | if (hpt_dma_blacklisted(adev, "UDMA", bad_ata33)) |
@@ -185,7 +185,7 @@ static unsigned long hpt366_filter(const struct ata_port *ap, struct ata_device | |||
185 | if (hpt_dma_blacklisted(adev, "UDMA4", bad_ata66_4)) | 185 | if (hpt_dma_blacklisted(adev, "UDMA4", bad_ata66_4)) |
186 | mask &= ~(0x0F << ATA_SHIFT_UDMA); | 186 | mask &= ~(0x0F << ATA_SHIFT_UDMA); |
187 | } | 187 | } |
188 | return ata_pci_default_filter(ap, adev, mask); | 188 | return ata_pci_default_filter(adev, mask); |
189 | } | 189 | } |
190 | 190 | ||
191 | /** | 191 | /** |