This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: rcar_drif: fix error return code in 
rcar_drif_alloc_dmachannels()
Author:  Wei Yongjun <weiyongj...@huawei.com>
Date:    Wed Jan 17 06:24:52 2018 -0500

Fix to return error code -ENODEV from the dma_request_slave_channel()
error handling case instead of 0, as done elsewhere in this function.
rc can be overwrite to 0 by dmaengine_slave_config() in the for loop.

Signed-off-by: Wei Yongjun <weiyongj...@huawei.com>
Reviewed-by: Geert Uytterhoeven <geert+rene...@glider.be>
Reviewed-by: Ramesh Shanmugasundaram <ramesh.shanmugasunda...@bp.renesas.com>
Signed-off-by: Hans Verkuil <hans.verk...@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mche...@s-opensource.com>

 drivers/media/platform/rcar_drif.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

---

diff --git a/drivers/media/platform/rcar_drif.c 
b/drivers/media/platform/rcar_drif.c
index b2e080ef5391..dc7e280c91b4 100644
--- a/drivers/media/platform/rcar_drif.c
+++ b/drivers/media/platform/rcar_drif.c
@@ -274,7 +274,7 @@ static int rcar_drif_alloc_dmachannels(struct rcar_drif_sdr 
*sdr)
 {
        struct dma_slave_config dma_cfg;
        unsigned int i;
-       int ret = -ENODEV;
+       int ret;
 
        for_each_rcar_drif_channel(i, &sdr->cur_ch_mask) {
                struct rcar_drif *ch = sdr->ch[i];
@@ -282,6 +282,7 @@ static int rcar_drif_alloc_dmachannels(struct rcar_drif_sdr 
*sdr)
                ch->dmach = dma_request_slave_channel(&ch->pdev->dev, "rx");
                if (!ch->dmach) {
                        rdrif_err(sdr, "ch%u: dma channel req failed\n", i);
+                       ret = -ENODEV;
                        goto dmach_error;
                }
 

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to