pwm: spear: Free resources only after pwmchip_remove()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Wed, 28 Apr 2021 09:05:25 +0000 (11:05 +0200)
committerThierry Reding <thierry.reding@gmail.com>
Tue, 25 May 2021 16:42:54 +0000 (18:42 +0200)
commitda0dea8912697f725d5f1386a38cb035222e7468
treeed0e894642d3bf7fc6af73184e5c03922894392c
parentb601a18f12383001e7a8da238de7ca1559ebc450
pwm: spear: Free resources only after pwmchip_remove()

Before pwmchip_remove() returns the PWM is expected to be functional. So
remove the pwmchip before disabling the clocks. The check for
pwmchip_remove()'s return value is dropped as this function returns
effectively always 0 and returning an error in a remove callback is
useless anyhow (as the device core ignores it and drops devm allocated
resources).

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
drivers/pwm/pwm-spear.c