diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-09-27 09:42:37 +0200 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-27 09:42:37 +0200 |
commit | ae1f19aeb715098ac06323f279383f3843429d97 (patch) | |
tree | de2464984fa36157e93145f0daefd9281b996e6a | |
parent | [libata] One more s/15/ATA_SECONDARY_IRQ/ substitution (diff) | |
download | linux-ae1f19aeb715098ac06323f279383f3843429d97.tar.xz linux-ae1f19aeb715098ac06323f279383f3843429d97.zip |
[libata] sata_mv: fix oops by filling in missing hook
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>
-rw-r--r-- | drivers/ata/sata_mv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index fdce6e07ecd2..c01496df4a99 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c @@ -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, |