summaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/coda
diff options
context:
space:
mode:
authorPhilipp Zabel2017-07-19 17:25:38 +0200
committerMauro Carvalho Chehab2017-07-26 19:37:17 +0200
commit9e6b1dae37810bec45c80d478636b254db377eaa (patch)
tree854bf2ab6ccd60468c91e94f3fdf28aa3155f0e0 /drivers/media/platform/coda
parentmedia: coda: disable BWB only while decoding on CODA 960 (diff)
downloadkernel-qcow2-linux-9e6b1dae37810bec45c80d478636b254db377eaa.tar.gz
kernel-qcow2-linux-9e6b1dae37810bec45c80d478636b254db377eaa.tar.xz
kernel-qcow2-linux-9e6b1dae37810bec45c80d478636b254db377eaa.zip
media: coda: explicitly request exclusive reset control
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.zabel@pengutronix.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/platform/coda')
-rw-r--r--drivers/media/platform/coda/coda-common.c3
1 files changed, 2 insertions, 1 deletions
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);