fbdev: da8xx-fb: Fix error handling in .remove()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 17 Oct 2022 19:52:50 +0000 (21:52 +0200)
committerHelge Deller <deller@gmx.de>
Tue, 18 Oct 2022 08:22:28 +0000 (10:22 +0200)
commit3c6174f9ffcb63ac8b54809c8043d7800b185bfb
treeda3cee45e011e48c0ec8a5e93c2deb03ec7f2a0e
parent25b72d530e7aa185955196b63f53c38f751f1632
fbdev: da8xx-fb: Fix error handling in .remove()

Even in the presence of problems (here: regulator_disable() might fail),
it's important to unregister all resources acquired during .probe() and
disable the device (i.e. DMA activity) because even if .remove() returns
an error code, the device is removed and the .remove() callback is never
called again later to catch up.

This is a preparation for making platform remove callbacks return void.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Helge Deller <deller@gmx.de>
Fixes: 611097d5daea ("fbdev: da8xx: add support for a regulator")
drivers/video/fbdev/da8xx-fb.c