From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932716AbbJNUqY (ORCPT ); Wed, 14 Oct 2015 16:46:24 -0400 Received: from mga09.intel.com ([134.134.136.24]:54153 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932329AbbJNUqH (ORCPT ); Wed, 14 Oct 2015 16:46:07 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,682,1437462000"; d="scan'208";a="664441521" Date: Thu, 15 Oct 2015 04:44:43 +0800 From: kbuild test robot To: Douglas Anderson Cc: kbuild-all@01.org, John Youn , balbi@ti.com, Yunzhi Li , Heiko =?iso-8859-1?Q?St=FCbner?= , linux-rockchip@lists.infradead.org, Julius Werner , gregory.herrero@intel.com, yousaf.kaukab@intel.com, dinguyen@opensource.altera.com, Douglas Anderson , johnyoun@synopsys.com, gregkh@linuxfoundation.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [RFC PATCH] usb: dwc2: host: dwc2_check_qtd_still_ok() can be static Message-ID: <20151014204443.GA144226@lkp-ib03> References: <201510150401.c19CKrBd%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1444848406-16451-1-git-send-email-dianders@chromium.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Fengguang Wu --- hcd_intr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/dwc2/hcd_intr.c b/drivers/usb/dwc2/hcd_intr.c index 57e71f9d..b31a1fb 100644 --- a/drivers/usb/dwc2/hcd_intr.c +++ b/drivers/usb/dwc2/hcd_intr.c @@ -1956,7 +1956,7 @@ static void dwc2_hc_chhltd_intr(struct dwc2_hsotg *hsotg, * the qtd from the top of the list, this will return NULL. Otherwise * it will be passed back qtd. */ -struct dwc2_qtd *dwc2_check_qtd_still_ok(struct dwc2_qtd *qtd, +static struct dwc2_qtd *dwc2_check_qtd_still_ok(struct dwc2_qtd *qtd, struct list_head *qtd_list) { struct dwc2_qtd *cur_head;