Commit 0fc57ea0 authored by Fengguang Wu's avatar Fengguang Wu Committed by Felipe Balbi

usb: gadget: f_hid: hidg_alloc() can be static

drivers/usb/gadget/function/f_hid.c:852:21: sparse: symbol 'hidg_alloc' was not declared. Should it be static?
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent e5ba1c02
...@@ -913,7 +913,7 @@ static void hidg_unbind(struct usb_configuration *c, struct usb_function *f) ...@@ -913,7 +913,7 @@ static void hidg_unbind(struct usb_configuration *c, struct usb_function *f)
usb_free_all_descriptors(f); usb_free_all_descriptors(f);
} }
struct usb_function *hidg_alloc(struct usb_function_instance *fi) static struct usb_function *hidg_alloc(struct usb_function_instance *fi)
{ {
struct f_hidg *hidg; struct f_hidg *hidg;
struct f_hid_opts *opts; struct f_hid_opts *opts;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment