提交 0fd3b93f 编写于 作者: P Philipp Zabel 提交者: Thierry Reding

pwm: hibvt: Explicitly request exclusive reset control

Commit a53e35db ("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.

Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: linux-pwm@vger.kernel.org
Signed-off-by: NPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: NThierry Reding <thierry.reding@gmail.com>
上级 d870c80e
...@@ -208,7 +208,7 @@ static int hibvt_pwm_probe(struct platform_device *pdev) ...@@ -208,7 +208,7 @@ static int hibvt_pwm_probe(struct platform_device *pdev)
if (ret < 0) if (ret < 0)
return ret; return ret;
pwm_chip->rstc = devm_reset_control_get(&pdev->dev, NULL); pwm_chip->rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL);
if (IS_ERR(pwm_chip->rstc)) { if (IS_ERR(pwm_chip->rstc)) {
clk_disable_unprepare(pwm_chip->clk); clk_disable_unprepare(pwm_chip->clk);
return PTR_ERR(pwm_chip->rstc); return PTR_ERR(pwm_chip->rstc);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册