diff options
author | Fengguang Wu <[email protected]> | 2014-09-16 17:26:46 +0300 |
---|---|---|
committer | Felipe Balbi <[email protected]> | 2014-09-16 09:58:52 -0500 |
commit | 4a6698b80cfe36dd4e3c6bc30ab81b4e0a837f64 (patch) | |
tree | 850ca60d3acb6085e2ba4e4af7159b2df400c74f | |
parent | 1b0bf88fd8b845aef4300c7c0feca774265dd1c4 (diff) |
usb: gadget: uvc: uvc_alloc() can be static
The function isn't called from outside of its compilation unit, make it
static.
Signed-off-by: Fengguang Wu <[email protected]>
Acked-by: Andrzej Pietrasiewicz <[email protected]>
Signed-off-by: Laurent Pinchart <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
-rw-r--r-- | drivers/usb/gadget/function/f_uvc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/function/f_uvc.c b/drivers/usb/gadget/function/f_uvc.c index 95dc1c68948c..bf9abf4aff22 100644 --- a/drivers/usb/gadget/function/f_uvc.c +++ b/drivers/usb/gadget/function/f_uvc.c @@ -773,7 +773,7 @@ static void uvc_unbind(struct usb_configuration *c, struct usb_function *f) usb_free_all_descriptors(f); } -struct usb_function *uvc_alloc(struct usb_function_instance *fi) +static struct usb_function *uvc_alloc(struct usb_function_instance *fi) { struct uvc_device *uvc; struct f_uvc_opts *opts; |