diff options
author | Ludovic Barre <ludovic.barre@st.com> | 2018-10-08 15:08:39 +0300 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2018-10-09 10:13:03 +0300 |
commit | 5a9f10c359e67403e87c48c73eda297d6e5581bf (patch) | |
tree | 98c02b5b3b0198fc04abf71d4a2225512bc18116 /drivers/mmc/host/mmci_qcom_dml.c | |
parent | 135ea30e231295b0045072b48203055d6605e18b (diff) | |
download | linux-5a9f10c359e67403e87c48c73eda297d6e5581bf.tar.xz |
mmc: mmci: add dma_finalize callback
This patch adds dma_finalize callback at mmci_host_ops
to allow to call specific variant.
Signed-off-by: Ludovic Barre <ludovic.barre@st.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/mmci_qcom_dml.c')
-rw-r--r-- | drivers/mmc/host/mmci_qcom_dml.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/mmci_qcom_dml.c b/drivers/mmc/host/mmci_qcom_dml.c index 66af40660f51..c2ef73f5f0a7 100644 --- a/drivers/mmc/host/mmci_qcom_dml.c +++ b/drivers/mmc/host/mmci_qcom_dml.c @@ -190,6 +190,7 @@ static struct mmci_host_ops qcom_variant_ops = { .dma_setup = qcom_dma_setup, .dma_release = mmci_dmae_release, .dma_start = mmci_dmae_start, + .dma_finalize = mmci_dmae_finalize, }; void qcom_variant_init(struct mmci_host *host) |