[PATCH] libata: make per-dev transfer mode limits per-dev
Now that each ata_device has xfer masks, per-dev limits can be made per-dev instead of per-port. Make per-dev limits per-dev. Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
@@ -1327,7 +1327,7 @@ static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
|
|||||||
if (print_info)
|
if (print_info)
|
||||||
printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
|
printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
|
||||||
ap->id, dev->devno);
|
ap->id, dev->devno);
|
||||||
ap->udma_mask &= ATA_UDMA5;
|
dev->udma_mask &= ATA_UDMA5;
|
||||||
dev->max_sectors = ATA_MAX_SECTORS;
|
dev->max_sectors = ATA_MAX_SECTORS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -371,7 +371,7 @@ static void sil_dev_config(struct ata_port *ap, struct ata_device *dev)
|
|||||||
if (quirks & SIL_QUIRK_UDMA5MAX) {
|
if (quirks & SIL_QUIRK_UDMA5MAX) {
|
||||||
printk(KERN_INFO "ata%u(%u): applying Maxtor errata fix %s\n",
|
printk(KERN_INFO "ata%u(%u): applying Maxtor errata fix %s\n",
|
||||||
ap->id, dev->devno, model_num);
|
ap->id, dev->devno, model_num);
|
||||||
ap->udma_mask &= ATA_UDMA5;
|
dev->udma_mask &= ATA_UDMA5;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user