diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-06-18 00:21:21 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-18 13:50:07 -0400 |
commit | 2a98dbbcd72cfae508c4d90bcbdc829363554ea7 (patch) | |
tree | baf46532e8a2bb39ed1abfbd9590e47dabe3678c /drivers/usb/gadget/f_ecm.c | |
parent | a3b0f9b9c0dae1ffd6d0d8e6349217ae0d6b0994 (diff) |
usb: gadget: f_ecm: fix missing unlock on error in ecm_alloc()
Add the missing unlock before return from function ecm_alloc()
in the error handling case.
Introduced by commit da92801c647cdebfd45001fd6aaecb8f0be7f56b.
(usb: gadget: f_ecm: add configfs support)
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/gadget/f_ecm.c')
-rw-r--r-- | drivers/usb/gadget/f_ecm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/gadget/f_ecm.c b/drivers/usb/gadget/f_ecm.c index fcafe1af4585..5d3561ea1c15 100644 --- a/drivers/usb/gadget/f_ecm.c +++ b/drivers/usb/gadget/f_ecm.c | |||
@@ -1012,6 +1012,7 @@ struct usb_function *ecm_alloc(struct usb_function_instance *fi) | |||
1012 | sizeof(ecm->ethaddr)); | 1012 | sizeof(ecm->ethaddr)); |
1013 | if (status < 12) { | 1013 | if (status < 12) { |
1014 | kfree(ecm); | 1014 | kfree(ecm); |
1015 | mutex_unlock(&opts->lock); | ||
1015 | return ERR_PTR(-EINVAL); | 1016 | return ERR_PTR(-EINVAL); |
1016 | } | 1017 | } |
1017 | ecm_string_defs[1].s = ecm->ethaddr; | 1018 | ecm_string_defs[1].s = ecm->ethaddr; |