pwm: hibvt: Explicitly request exclusive reset control
authorPhilipp Zabel <p.zabel@pengutronix.de>
Wed, 19 Jul 2017 15:26:13 +0000 (17:26 +0200)
committerThierry Reding <thierry.reding@gmail.com>
Mon, 21 Aug 2017 06:52:40 +0000 (08:52 +0200)
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>
drivers/pwm/pwm-hibvt.c

index 8dadc58..27c107e 100644 (file)
@@ -208,7 +208,7 @@ static int hibvt_pwm_probe(struct platform_device *pdev)
        if (ret < 0)
                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)) {
                clk_disable_unprepare(pwm_chip->clk);
                return PTR_ERR(pwm_chip->rstc);