Skip to content

Commit

Permalink
drm/vc4: cleanup with list_first_entry_or_null()
Browse files Browse the repository at this point in the history
The combo of list_empty() check and return list_first_entry()
can be replaced with list_first_entry_or_null().

Signed-off-by: Masahiro Yamada <[email protected]>
Signed-off-by: Eric Anholt <[email protected]>
  • Loading branch information
masahir0y authored and anholt committed Oct 6, 2016
1 parent c2cbc38 commit 57b9f56
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions drivers/gpu/drm/vc4/vc4_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -307,18 +307,15 @@ struct vc4_exec_info {
static inline struct vc4_exec_info *
vc4_first_bin_job(struct vc4_dev *vc4)
{
if (list_empty(&vc4->bin_job_list))
return NULL;
return list_first_entry(&vc4->bin_job_list, struct vc4_exec_info, head);
return list_first_entry_or_null(&vc4->bin_job_list,
struct vc4_exec_info, head);
}

static inline struct vc4_exec_info *
vc4_first_render_job(struct vc4_dev *vc4)
{
if (list_empty(&vc4->render_job_list))
return NULL;
return list_first_entry(&vc4->render_job_list,
struct vc4_exec_info, head);
return list_first_entry_or_null(&vc4->render_job_list,
struct vc4_exec_info, head);
}

static inline struct vc4_exec_info *
Expand Down

0 comments on commit 57b9f56

Please sign in to comment.