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

Subject: media: coda: explicitly request exclusive reset control
Author:  Philipp Zabel <p.za...@pengutronix.de>
Date:    Wed Jul 19 11:25:38 2017 -0400

Commit a53e35db70d1 ("reset: Ensure drivers are explicit when requesting
reset lines") started to transition the reset control request API calls
to explicitly state whether the driver needs exclusive or shared reset
control behavior. Convert all drivers requesting exclusive resets to the
explicit API call so the temporary transition helpers can be removed.

No functional changes.

Signed-off-by: Philipp Zabel <p.za...@pengutronix.de>
Signed-off-by: Mauro Carvalho Chehab <mche...@s-opensource.com>

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

---

diff --git a/drivers/media/platform/coda/coda-common.c 
b/drivers/media/platform/coda/coda-common.c
index dcb3419d5126..40f31038249d 100644
--- a/drivers/media/platform/coda/coda-common.c
+++ b/drivers/media/platform/coda/coda-common.c
@@ -2527,7 +2527,8 @@ static int coda_probe(struct platform_device *pdev)
                return ret;
        }
 
-       dev->rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
+       dev->rstc = devm_reset_control_get_optional_exclusive(&pdev->dev,
+                                                             NULL);
        if (IS_ERR(dev->rstc)) {
                ret = PTR_ERR(dev->rstc);
                dev_err(&pdev->dev, "failed get reset control: %d\n", ret);

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

Reply via email to