mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
pwm: atmel-tcb: Only free resources after pwm_chip_remove() returned
Otherwise the PWM stops working before the PWM core and its consumers are aware the device is going away. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
parent
30882cf130
commit
c77e99f434
1 changed files with 4 additions and 4 deletions
|
@ -507,14 +507,14 @@ static int atmel_tcb_pwm_remove(struct platform_device *pdev)
|
||||||
struct atmel_tcb_pwm_chip *tcbpwm = platform_get_drvdata(pdev);
|
struct atmel_tcb_pwm_chip *tcbpwm = platform_get_drvdata(pdev);
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
clk_disable_unprepare(tcbpwm->slow_clk);
|
|
||||||
clk_put(tcbpwm->slow_clk);
|
|
||||||
clk_put(tcbpwm->clk);
|
|
||||||
|
|
||||||
err = pwmchip_remove(&tcbpwm->chip);
|
err = pwmchip_remove(&tcbpwm->chip);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
|
clk_disable_unprepare(tcbpwm->slow_clk);
|
||||||
|
clk_put(tcbpwm->slow_clk);
|
||||||
|
clk_put(tcbpwm->clk);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue