提交 ffc4b406 编写于 作者: M Masahiro Yamada 提交者: Felipe Balbi

usb: dwc2: 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>
Acked-by: NJohn Youn <johnyoun@synopsys.com>
Signed-off-by: NFelipe Balbi <felipe.balbi@linux.intel.com>
上级 3f5ad864
...@@ -1099,10 +1099,8 @@ static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value, bool now); ...@@ -1099,10 +1099,8 @@ static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value, bool now);
*/ */
static struct dwc2_hsotg_req *get_ep_head(struct dwc2_hsotg_ep *hs_ep) static struct dwc2_hsotg_req *get_ep_head(struct dwc2_hsotg_ep *hs_ep)
{ {
if (list_empty(&hs_ep->queue)) return list_first_entry_or_null(&hs_ep->queue, struct dwc2_hsotg_req,
return NULL; queue);
return list_first_entry(&hs_ep->queue, struct dwc2_hsotg_req, queue);
} }
/** /**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册