diff options
Diffstat (limited to 'drivers/usb/gadget/f_sourcesink.c')
-rw-r--r-- | drivers/usb/gadget/f_sourcesink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/f_sourcesink.c b/drivers/usb/gadget/f_sourcesink.c index 41adf3ef96c2..a8895859a221 100644 --- a/drivers/usb/gadget/f_sourcesink.c +++ b/drivers/usb/gadget/f_sourcesink.c | |||
@@ -898,7 +898,7 @@ static struct usb_function *source_sink_alloc_func( | |||
898 | return &ss->function; | 898 | return &ss->function; |
899 | } | 899 | } |
900 | 900 | ||
901 | static void acm_free_instance(struct usb_function_instance *fi) | 901 | static void source_sink_free_instance(struct usb_function_instance *fi) |
902 | { | 902 | { |
903 | struct f_ss_opts *ss_opts; | 903 | struct f_ss_opts *ss_opts; |
904 | 904 | ||
@@ -913,7 +913,7 @@ static struct usb_function_instance *source_sink_alloc_inst(void) | |||
913 | ss_opts = kzalloc(sizeof(*ss_opts), GFP_KERNEL); | 913 | ss_opts = kzalloc(sizeof(*ss_opts), GFP_KERNEL); |
914 | if (!ss_opts) | 914 | if (!ss_opts) |
915 | return ERR_PTR(-ENOMEM); | 915 | return ERR_PTR(-ENOMEM); |
916 | ss_opts->func_inst.free_func_inst = acm_free_instance; | 916 | ss_opts->func_inst.free_func_inst = source_sink_free_instance; |
917 | return &ss_opts->func_inst; | 917 | return &ss_opts->func_inst; |
918 | } | 918 | } |
919 | DECLARE_USB_FUNCTION(SourceSink, source_sink_alloc_inst, | 919 | DECLARE_USB_FUNCTION(SourceSink, source_sink_alloc_inst, |