diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-12-16 18:43:50 +0900 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-12-17 13:17:43 -0600 |
commit | 9272fe5a99962915241701f75c0efceae9e736b5 (patch) | |
tree | b4ffb4a42b421a8064fbde7de936860599bcc60e /drivers/usb/gadget | |
parent | 36a61125484a3a1cc6dc66f3e4e13b25e447cf3e (diff) | |
download | blackbird-op-linux-9272fe5a99962915241701f75c0efceae9e736b5.tar.gz blackbird-op-linux-9272fe5a99962915241701f75c0efceae9e736b5.zip |
usb: gadget: f_obex: Fix sparse warning
Make local symbol static in order to fix the following sparse
warning.
drivers/usb/gadget/f_obex.c:502:21: warning: symbol 'obex_alloc' was not declared. Should it be static?
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget')
-rw-r--r-- | drivers/usb/gadget/f_obex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/f_obex.c b/drivers/usb/gadget/f_obex.c index ad39f1dacba3..aebae1853bce 100644 --- a/drivers/usb/gadget/f_obex.c +++ b/drivers/usb/gadget/f_obex.c @@ -499,7 +499,7 @@ static void obex_unbind(struct usb_configuration *c, struct usb_function *f) usb_free_all_descriptors(f); } -struct usb_function *obex_alloc(struct usb_function_instance *fi) +static struct usb_function *obex_alloc(struct usb_function_instance *fi) { struct f_obex *obex; struct f_serial_opts *opts; |