Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pwm: hibvt: 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.

Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: linux-pwm@vger.kernel.org
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>

authored by

Philipp Zabel and committed by
Thierry Reding
0fd3b93f d870c80e

+1 -1
+1 -1
drivers/pwm/pwm-hibvt.c
··· 208 208 if (ret < 0) 209 209 return ret; 210 210 211 - pwm_chip->rstc = devm_reset_control_get(&pdev->dev, NULL); 211 + pwm_chip->rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL); 212 212 if (IS_ERR(pwm_chip->rstc)) { 213 213 clk_disable_unprepare(pwm_chip->clk); 214 214 return PTR_ERR(pwm_chip->rstc);