Re: [PATCH next] drm/plane: Fix error pointer vs NULL bug in create_in_format_blob()

2025-05-23 Thread Dmitry Baryshkov
On Fri, May 23, 2025 at 07:07:32PM +0300, Dan Carpenter wrote: > The callers expect to receive error pointers on error but > create_in_format_blob() returns NULL. Change it to return error > pointers. > > Fixes: 0d6dcd741c26 ("drm/plane: modify create_in_formats to acommodate > async") > Signed-

[PATCH next] drm/plane: Fix error pointer vs NULL bug in create_in_format_blob()

2025-05-23 Thread Dan Carpenter
The callers expect to receive error pointers on error but create_in_format_blob() returns NULL. Change it to return error pointers. Fixes: 0d6dcd741c26 ("drm/plane: modify create_in_formats to acommodate async") Signed-off-by: Dan Carpenter --- drivers/gpu/drm/drm_plane.c | 4 ++-- 1 file chang