projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb46330
)
[libata] sata_mv: fix oops by filling in missing hook
author
Jeff Garzik
<jeff@garzik.org>
Wed, 27 Sep 2006 07:42:37 +0000
(
03:42
-0400)
committer
Jeff 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
patch
|
blob
|
blame
|
history
diff --git
a/drivers/ata/sata_mv.c
b/drivers/ata/sata_mv.c
index fdce6e07ecd2073d5f474e731b3828d5d990afcc..c01496df4a99c709b7a8f13804207fe3c28149ae 100644
(file)
--- 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,