All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <fengguang.wu@intel.com>
To: Marcus Folkesson <marcus.folkesson@gmail.com>
Cc: kbuild-all@01.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jonathan Corbet <corbet@lwn.net>, Felipe Balbi <balbi@kernel.org>,
	davem@davemloft.net,
	Mauro Carvalho Chehab <mchehab+samsung@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Randy Dunlap <rdunlap@infradead.org>,
	Ruslan Bilovol <ruslan.bilovol@gmail.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Kate Stewart <kstewart@linuxfoundation.org>,
	linux-usb@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	Marcus Folkesson <marcus.folkesson@gmail.com>
Subject: [RFC PATCH] usb: gadget: ccid: ccidg_start_ep() can be static
Date: Tue, 29 May 2018 10:57:19 +0800	[thread overview]
Message-ID: <20180529025719.GA102672@ivb43> (raw)
In-Reply-To: <20180526211940.25474-1-marcus.folkesson@gmail.com>


Fixes: 0760b8dd303b ("usb: gadget: ccid: add support for USB CCID Gadget Device")
Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
---
 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

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <fengguang.wu@intel.com>
To: Marcus Folkesson <marcus.folkesson@gmail.com>
Cc: kbuild-all@01.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jonathan Corbet <corbet@lwn.net>, Felipe Balbi <balbi@kernel.org>,
	davem@davemloft.net,
	Mauro Carvalho Chehab <mchehab+samsung@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Randy Dunlap <rdunlap@infradead.org>,
	Ruslan Bilovol <ruslan.bilovol@gmail.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Kate Stewart <kstewart@linuxfoundation.org>,
	linux-usb@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: [RFC] usb: gadget: ccid: ccidg_start_ep() can be static
Date: Tue, 29 May 2018 10:57:19 +0800	[thread overview]
Message-ID: <20180529025719.GA102672@ivb43> (raw)

Fixes: 0760b8dd303b ("usb: gadget: ccid: add support for USB CCID Gadget Device")
Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
---
 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;

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <fengguang.wu@intel.com>
To: Marcus Folkesson <marcus.folkesson@gmail.com>
Cc: kbuild-all@01.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jonathan Corbet <corbet@lwn.net>, Felipe Balbi <balbi@kernel.org>,
	davem@davemloft.net,
	Mauro Carvalho Chehab <mchehab+samsung@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Randy Dunlap <rdunlap@infradead.org>,
	Ruslan Bilovol <ruslan.bilovol@gmail.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Kate Stewart <kstewart@linuxfoundation.org>,
	linux-usb@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	Marcus Folkesson <marcus.folkesson@gmail.com>
Subject: [RFC PATCH] usb: gadget: ccid: ccidg_start_ep() can be static
Date: Tue, 29 May 2018 10:57:19 +0800	[thread overview]
Message-ID: <20180529025719.GA102672@ivb43> (raw)
In-Reply-To: <20180526211940.25474-1-marcus.folkesson@gmail.com>


Fixes: 0760b8dd303b ("usb: gadget: ccid: add support for USB CCID Gadget Device")
Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
---
 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;

  parent reply	other threads:[~2018-05-29  2:59 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20180526212048epcas2p1510fd6c92f20e8f6d0059742ab5fb3f7@epcas2p1.samsung.com>
2018-05-26 21:19 ` [PATCH v2 1/3] usb: gadget: ccid: add support for USB CCID Gadget Device Marcus Folkesson
2018-05-26 21:19   ` Marcus Folkesson
2018-05-26 21:19   ` [v2,1/3] " Marcus Folkesson
2018-05-26 21:19   ` [PATCH v2 2/3] Documentation: usb: add documentation " Marcus Folkesson
2018-05-26 21:19     ` Marcus Folkesson
2018-05-26 21:19     ` [v2,2/3] " Marcus Folkesson
2018-05-27 23:36     ` [PATCH v2 2/3] " Randy Dunlap
2018-05-27 23:36       ` Randy Dunlap
2018-05-27 23:36       ` [v2,2/3] " Randy Dunlap
2018-05-28  7:42       ` [PATCH v2 2/3] " Marcus Folkesson
2018-05-28  7:42         ` Marcus Folkesson
2018-05-28  7:42         ` [v2,2/3] " Marcus Folkesson
2018-05-26 21:19   ` [PATCH v2 3/3] MAINTAINERS: add " Marcus Folkesson
2018-05-26 21:19     ` Marcus Folkesson
2018-05-26 21:19     ` [v2,3/3] " Marcus Folkesson
2018-05-28  7:04   ` [PATCH v2 1/3] usb: gadget: ccid: add support for " Andrzej Pietrasiewicz
2018-05-28  7:04     ` Andrzej Pietrasiewicz
2018-05-28  7:04     ` [v2,1/3] " Andrzej Pietrasiewicz
2018-05-28  8:38     ` [PATCH v2 1/3] " Marcus Folkesson
2018-05-28  8:38       ` Marcus Folkesson
2018-05-28  8:38       ` [v2,1/3] " Marcus Folkesson
2018-05-28  9:12       ` [PATCH v2 1/3] " Andrzej Pietrasiewicz
2018-05-28  9:12         ` Andrzej Pietrasiewicz
2018-05-28  9:12         ` [v2,1/3] " Andrzej Pietrasiewicz
2018-05-28  9:32         ` [PATCH v2 1/3] " Marcus Folkesson
2018-05-28  9:32           ` Marcus Folkesson
2018-05-28  9:32           ` [v2,1/3] " Marcus Folkesson
2018-05-28  9:58           ` [PATCH v2 1/3] " Andrzej Pietrasiewicz
2018-05-28  9:58             ` Andrzej Pietrasiewicz
2018-05-28  9:58             ` [v2,1/3] " Andrzej Pietrasiewicz
2018-05-29  1:15   ` [PATCH v2 1/3] " kbuild test robot
2018-05-29  1:15     ` [v2,1/3] " kbuild test robot
2018-05-29  2:57   ` [PATCH v2 1/3] " kbuild test robot
2018-05-29  2:57     ` kbuild test robot
2018-05-29  2:57     ` [v2,1/3] " kbuild test robot
2018-05-29  2:57   ` kbuild test robot [this message]
2018-05-29  2:57     ` [RFC PATCH] usb: gadget: ccid: ccidg_start_ep() can be static kbuild test robot
2018-05-29  2:57     ` [RFC] " kbuild test robot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180529025719.GA102672@ivb43 \
    --to=fengguang.wu@intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=balbi@kernel.org \
    --cc=corbet@lwn.net \
    --cc=davem@davemloft.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=kbuild-all@01.org \
    --cc=kstewart@linuxfoundation.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=marcus.folkesson@gmail.com \
    --cc=mchehab+samsung@kernel.org \
    --cc=rdunlap@infradead.org \
    --cc=ruslan.bilovol@gmail.com \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.