Skip to content

Commit

Permalink
pwm: renesas-tpu: Fix late Runtime PM enablement
Browse files Browse the repository at this point in the history
[ Upstream commit d5a3c7a ]

Runtime PM should be enabled before calling pwmchip_add(), as PWM users
can appear immediately after the PWM chip has been added.
Likewise, Runtime PM should always be disabled after the removal of the
PWM chip, even if the latter failed.

Fixes: 99b82ab ("pwm: Add Renesas TPU PWM driver")
Signed-off-by: Geert Uytterhoeven <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
Signed-off-by: Sasha Levin <[email protected]>
  • Loading branch information
geertu authored and gregkh committed Apr 29, 2020
1 parent d59e5b0 commit 0b03af5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions drivers/pwm/pwm-renesas-tpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,16 +423,17 @@ static int tpu_probe(struct platform_device *pdev)
tpu->chip.base = -1;
tpu->chip.npwm = TPU_CHANNEL_MAX;

pm_runtime_enable(&pdev->dev);

ret = pwmchip_add(&tpu->chip);
if (ret < 0) {
dev_err(&pdev->dev, "failed to register PWM chip\n");
pm_runtime_disable(&pdev->dev);
return ret;
}

dev_info(&pdev->dev, "TPU PWM %d registered\n", tpu->pdev->id);

pm_runtime_enable(&pdev->dev);

return 0;
}

Expand All @@ -442,12 +443,10 @@ static int tpu_remove(struct platform_device *pdev)
int ret;

ret = pwmchip_remove(&tpu->chip);
if (ret)
return ret;

pm_runtime_disable(&pdev->dev);

return 0;
return ret;
}

#ifdef CONFIG_OF
Expand Down

0 comments on commit 0b03af5

Please sign in to comment.