media: coda: explicitly request exclusive reset control

Commit a53e35db70 ("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>
This commit is contained in:
Philipp Zabel 2017-07-19 11:25:38 -04:00 committed by Mauro Carvalho Chehab
parent 87a420c8f6
commit 9e6b1dae37
1 changed files with 2 additions and 1 deletions

View File

@ -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);