summaryrefslogtreecommitdiff
path: root/drivers/usb/gadget
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-09-16 10:14:45 +0400
committerFelipe Balbi <balbi@ti.com>2013-09-17 20:06:44 +0400
commit0f0392f245525cd0d477865e9f6b0ade52d2aa54 (patch)
treec139272be85dc90b9ef8d73b38605e9a35d73591 /drivers/usb/gadget
parent1b97be8ce4847be9cceb1f80c87868131e9cc8e7 (diff)
downloadlinux-0f0392f245525cd0d477865e9f6b0ade52d2aa54.tar.xz
usb: gadget: f_ecm: Staticize ecm_alloc
'ecm_alloc' is local to this file. Make it static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget')
-rw-r--r--drivers/usb/gadget/f_ecm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/f_ecm.c b/drivers/usb/gadget/f_ecm.c
index edab45da3741..8d9e6f7e8f1a 100644
--- a/drivers/usb/gadget/f_ecm.c
+++ b/drivers/usb/gadget/f_ecm.c
@@ -995,7 +995,7 @@ static void ecm_unbind(struct usb_configuration *c, struct usb_function *f)
usb_ep_free_request(ecm->notify, ecm->notify_req);
}
-struct usb_function *ecm_alloc(struct usb_function_instance *fi)
+static struct usb_function *ecm_alloc(struct usb_function_instance *fi)
{
struct f_ecm *ecm;
struct f_ecm_opts *opts;