summaryrefslogtreecommitdiffstats
path: root/drivers/ata/ata_generic.c
diff options
context:
space:
mode:
authorAlan2007-02-20 19:15:03 +0100
committerJeff Garzik2007-02-25 21:41:40 +0100
commit616ece2e7e5363574d172d64b19ffe9535606a1b (patch)
tree41ca4f5a76ab9a8846b445250cc92339874c8824 /drivers/ata/ata_generic.c
parentpata_pcmcia: Fix oops in 2.6.21-rc1 (diff)
downloadkernel-qcow2-linux-616ece2e7e5363574d172d64b19ffe9535606a1b.tar.gz
kernel-qcow2-linux-616ece2e7e5363574d172d64b19ffe9535606a1b.tar.xz
kernel-qcow2-linux-616ece2e7e5363574d172d64b19ffe9535606a1b.zip
libata: Use new id_to_dma_mode function to tidy reporting in more drivers (minimally tested)
Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/ata_generic.c')
-rw-r--r--drivers/ata/ata_generic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/ata_generic.c b/drivers/ata/ata_generic.c
index be66ea08da55..7649039cc6a9 100644
--- a/drivers/ata/ata_generic.c
+++ b/drivers/ata/ata_generic.c
@@ -90,10 +90,10 @@ static int generic_set_mode(struct ata_port *ap, struct ata_device **unused)
/* We do need the right mode information for DMA or PIO
and this comes from the current configuration flags */
if (dma_enabled & (1 << (5 + i))) {
- dev->xfer_mode = XFER_MW_DMA_0;
- dev->xfer_shift = ATA_SHIFT_MWDMA;
+ ata_id_to_dma_mode(dev, XFER_MW_DMA_0);
dev->flags &= ~ATA_DFLAG_PIO;
} else {
+ ata_dev_printk(dev, KERN_INFO, "configured for PIO\n");
dev->xfer_mode = XFER_PIO_0;
dev->xfer_shift = ATA_SHIFT_PIO;
dev->flags |= ATA_DFLAG_PIO;