From patchwork Tue May 29 02:57:19 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 10434293 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 69A3F604D4 for ; Tue, 29 May 2018 02:58:18 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5AB18205F8 for ; Tue, 29 May 2018 02:58:18 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4F140223C7; Tue, 29 May 2018 02:58:18 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E966524603 for ; Tue, 29 May 2018 02:58:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1033376AbeE2C6P (ORCPT ); Mon, 28 May 2018 22:58:15 -0400 Received: from mga05.intel.com ([192.55.52.43]:7741 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1032729AbeE2C6J (ORCPT ); Mon, 28 May 2018 22:58:09 -0400 X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 May 2018 19:58:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,454,1520924400"; d="scan'208";a="44949083" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by orsmga008.jf.intel.com with ESMTP; 28 May 2018 19:58:04 -0700 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1fNUpn-0007ny-Sz; Tue, 29 May 2018 10:58:03 +0800 Date: Tue, 29 May 2018 10:57:19 +0800 From: kbuild test robot To: Marcus Folkesson Cc: kbuild-all@01.org, Greg Kroah-Hartman , Jonathan Corbet , Felipe Balbi , davem@davemloft.net, Mauro Carvalho Chehab , Andrew Morton , Randy Dunlap , Ruslan Bilovol , Thomas Gleixner , Kate Stewart , linux-usb@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, Marcus Folkesson Subject: [RFC PATCH] usb: gadget: ccid: ccidg_start_ep() can be static Message-ID: <20180529025719.GA102672@ivb43> References: <20180526211940.25474-1-marcus.folkesson@gmail.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20180526211940.25474-1-marcus.folkesson@gmail.com> 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-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fixes: 0760b8dd303b ("usb: gadget: ccid: add support for USB CCID Gadget Device") Signed-off-by: kbuild test robot --- f_ccid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/usb/gadget/function/f_ccid.c b/drivers/usb/gadget/function/f_ccid.c index 9ff8615..35b392c 100644 --- a/drivers/usb/gadget/function/f_ccid.c +++ b/drivers/usb/gadget/function/f_ccid.c @@ -478,7 +478,7 @@ static void ccidg_function_disable(struct usb_function *f) wake_up(&bulk_dev->read_wq); } -int ccidg_start_ep(struct f_ccidg *ccidg, struct usb_function *f, +static int ccidg_start_ep(struct f_ccidg *ccidg, struct usb_function *f, struct usb_ep *ep) { struct usb_composite_dev *cdev = f->config->cdev;