From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on archive.lwn.net X-Spam-Level: X-Spam-Status: No, score=-5.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham autolearn_force=no version=3.4.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by archive.lwn.net (Postfix) with ESMTP id 2623E7DF88 for ; Tue, 29 May 2018 02:59:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1033245AbeE2C6M (ORCPT ); Mon, 28 May 2018 22:58:12 -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-Type: text/plain; charset=us-ascii 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-doc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org 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(-) 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; -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html