提交 57b9f569 编写于 作者: M Masahiro Yamada 提交者: Eric Anholt

drm/vc4: cleanup with list_first_entry_or_null()

The combo of list_empty() check and return list_first_entry()
can be replaced with list_first_entry_or_null().
Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: NEric Anholt <eric@anholt.net>
上级 c2cbc38b
...@@ -307,17 +307,14 @@ struct vc4_exec_info { ...@@ -307,17 +307,14 @@ struct vc4_exec_info {
static inline struct vc4_exec_info * static inline struct vc4_exec_info *
vc4_first_bin_job(struct vc4_dev *vc4) vc4_first_bin_job(struct vc4_dev *vc4)
{ {
if (list_empty(&vc4->bin_job_list)) return list_first_entry_or_null(&vc4->bin_job_list,
return NULL; struct vc4_exec_info, head);
return list_first_entry(&vc4->bin_job_list, struct vc4_exec_info, head);
} }
static inline struct vc4_exec_info * static inline struct vc4_exec_info *
vc4_first_render_job(struct vc4_dev *vc4) vc4_first_render_job(struct vc4_dev *vc4)
{ {
if (list_empty(&vc4->render_job_list)) return list_first_entry_or_null(&vc4->render_job_list,
return NULL;
return list_first_entry(&vc4->render_job_list,
struct vc4_exec_info, head); struct vc4_exec_info, head);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册