Re: [PATCH] drm/imx/lcdc: Fix double-free of driver data

2023-12-01 Thread Philipp Zabel
On Do, 2023-07-06 at 11:27 +0200, Uwe Kleine-König wrote: > The struct imx_lcdc driver data is allocated using devm_drm_dev_alloc() > so it must not be explicitly kfree()d. > > Also drm_kms_helper_poll_fini() should not be called as there is no > matching drm_kms_helper_poll_init(). So drop the re

Re: [PATCH] drm/imx/lcdc: Fix double-free of driver data

2023-09-19 Thread Uwe Kleine-König
Hello, On Thu, Jul 06, 2023 at 11:27:31AM +0200, Uwe Kleine-König wrote: > The struct imx_lcdc driver data is allocated using devm_drm_dev_alloc() > so it must not be explicitly kfree()d. > > Also drm_kms_helper_poll_fini() should not be called as there is no > matching drm_kms_helper_poll_init()