Re: [PATCH v3 13/22] drm/omap: dss: venc: convert to devm_drm_bridge_alloc() API

2025-05-10 Thread Maxime Ripard
On Fri, 9 May 2025 15:53:39 +0200, Luca Ceresoli wrote: > This is the new API for allocating DRM bridges. > > Switching from a non-devm to a devm allocation allows removing the kfree() > in the remove function and in the probe error management code, and as a > consequence to simplify the code flow

[PATCH v3 13/22] drm/omap: dss: venc: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Luca Ceresoli
This is the new API for allocating DRM bridges. Switching from a non-devm to a devm allocation allows removing the kfree() in the remove function and in the probe error management code, and as a consequence to simplify the code flow by removing now unnecessary gotos. Signed-off-by: Luca Ceresoli