diff options
author | Tejun Heo <tj@kernel.org> | 2010-01-11 17:03:11 +0900 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2010-01-12 14:33:23 -0500 |
commit | 0b67c7439fe2a5d76602de36854c88e2beab00b0 (patch) | |
tree | 15183a67b7e47ab55be080d433eeeee4efeb985c | |
parent | a2342f46437cde56803a36fdf94da635a74ad41c (diff) | |
download | linux-3.10-0b67c7439fe2a5d76602de36854c88e2beab00b0.tar.gz linux-3.10-0b67c7439fe2a5d76602de36854c88e2beab00b0.tar.bz2 linux-3.10-0b67c7439fe2a5d76602de36854c88e2beab00b0.zip |
ata_piix: enable 32bit PIO on SATA piix
Commit 871af1210f13966ab911ed2166e4ab2ce775b99d enabled 32bit PIO for
PATA piix but didn't for SATA. There's no reason not to use 32bit PIO
on SATA piix. Enable it.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r-- | drivers/ata/ata_piix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index 19136a7e106..6f3f2257d0f 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c @@ -329,7 +329,7 @@ static struct ata_port_operations ich_pata_ops = { }; static struct ata_port_operations piix_sata_ops = { - .inherits = &ata_bmdma_port_ops, + .inherits = &ata_bmdma32_port_ops, }; static struct ata_port_operations piix_sidpr_sata_ops = { |