Skip to content

Commit

Permalink
malidp: Fix NULL vs IS_ERR() checking
Browse files Browse the repository at this point in the history
The get_sg_table() function does not return NULL.
It returns error pointers.

Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
Link: https://lore.kernel.org/dri-devel/20211213072115.18098-1-linmq006@gmail.com/
  • Loading branch information
Miaoqian Lin authored and Liviu Dudau committed Apr 28, 2022
1 parent e08a99d commit 15342f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/arm/malidp_planes.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ static bool malidp_check_pages_threshold(struct malidp_plane_state *ms,
else
sgt = obj->funcs->get_sg_table(obj);

if (!sgt)
if (IS_ERR(sgt))
return false;

sgl = sgt->sgl;
Expand Down

0 comments on commit 15342f9

Please sign in to comment.