[libata] sata_mv: fix oops by filling in missing hook
authorJeff Garzik <jeff@garzik.org>
Wed, 27 Sep 2006 07:42:37 +0000 (03:42 -0400)
committerJeff Garzik <jeff@garzik.org>
Wed, 27 Sep 2006 07:42:37 +0000 (03:42 -0400)
Only two of three ata_port_operations structs had a ->data_xfer member,
which led to, uh, a lack of data xfer.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/ata/sata_mv.c

index fdce6e07ecd2073d5f474e731b3828d5d990afcc..c01496df4a99c709b7a8f13804207fe3c28149ae 100644 (file)
@@ -463,6 +463,7 @@ static const struct ata_port_operations mv_iie_ops = {
 
        .qc_prep                = mv_qc_prep_iie,
        .qc_issue               = mv_qc_issue,
+       .data_xfer              = ata_mmio_data_xfer,
 
        .eng_timeout            = mv_eng_timeout,