From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756355AbdETTT4 (ORCPT ); Sat, 20 May 2017 15:19:56 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:39010 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755865AbdETTTw (ORCPT ); Sat, 20 May 2017 15:19:52 -0400 Date: Sat, 20 May 2017 21:19:40 +0200 From: Greg Kroah-Hartman To: Masahiro Yamada Cc: linux-usb@vger.kernel.org, Chunfeng Yun , linux-kernel@vger.kernel.org Subject: Re: [PATCH] usb: mtu3: cleanup with list_first_entry_or_null() Message-ID: <20170520191940.GA29597@kroah.com> References: <1495299931-10418-1-git-send-email-yamada.masahiro@socionext.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1495299931-10418-1-git-send-email-yamada.masahiro@socionext.com> User-Agent: Mutt/1.8.2 (2017-04-18) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, May 21, 2017 at 02:05:31AM +0900, Masahiro Yamada wrote: > The combo of list_empty() and list_first_entry() can be replaced with > list_first_entry_or_null(). > > Signed-off-by: Masahiro Yamada > --- > > drivers/usb/mtu3/mtu3.h | 8 ++------ > 1 file changed, 2 insertions(+), 6 deletions(-) > > diff --git a/drivers/usb/mtu3/mtu3.h b/drivers/usb/mtu3/mtu3.h > index aa6fd6a..7b6dc23 100644 > --- a/drivers/usb/mtu3/mtu3.h > +++ b/drivers/usb/mtu3/mtu3.h > @@ -356,12 +356,8 @@ static inline struct mtu3_ep *to_mtu3_ep(struct usb_ep *ep) > > static inline struct mtu3_request *next_request(struct mtu3_ep *mep) > { > - struct list_head *queue = &mep->req_list; > - > - if (list_empty(queue)) > - return NULL; > - > - return list_first_entry(queue, struct mtu3_request, list); > + return list_first_entry_or_null(&mep->req_list, struct mtu3_request, > + list); Even better, why is this an inlined function at all? Why not just have it "open coded" everywhere it is used? thanks, greg k-h