pwm: omap-dmtimer: Simplify error handling
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 11 Nov 2019 09:03:55 +0000 (10:03 +0100)
committerThierry Reding <thierry.reding@gmail.com>
Mon, 20 Jan 2020 11:31:19 +0000 (12:31 +0100)
commitc4cf7aa57eb83b108d2d9c6c37c143388fee2a4d
treecd24641ffe54ed6a4c7e8c19a9bf1bd46dbc161a
parent43efdc8f0e6d7088ec61bd55a73bf853f002d043
pwm: omap-dmtimer: Simplify error handling

Instead of doing error handling in the middle of ->probe(), move error
handling and freeing the reference to timer to the end.

This fixes a resource leak as dm_timer wasn't freed when allocating
*omap failed.

Implementation note: The put: label was never reached without a goto and
ret being unequal to 0, so the removed return statement is fine.

Fixes: 6604c6556db9 ("pwm: Add PWM driver for OMAP using dual-mode timers")
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
drivers/pwm/pwm-omap-dmtimer.c