projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e8328f
)
usb: musb: gadget: fix build break by adding missing 'break'
author
Robert Baldyga
<r.baldyga@samsung.com>
Fri, 7 Aug 2015 12:13:34 +0000
(14:13 +0200)
committer
Felipe Balbi
<balbi@ti.com>
Fri, 7 Aug 2015 14:25:46 +0000
(09:25 -0500)
Add missing break after 'default' label to fix compilation error.
Signed-off-by: Robert Baldyga <r.baldyga@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/musb/musb_gadget.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/usb/musb/musb_gadget.c
b/drivers/usb/musb/musb_gadget.c
index cc503591b634b8810ddd6c914354b2c3f7e41721..67ad630c86c9c1179c7b7cdc5b42f13a26fc5a32 100644
(file)
--- a/
drivers/usb/musb/musb_gadget.c
+++ b/
drivers/usb/musb/musb_gadget.c
@@
-1703,6
+1703,7
@@
static struct usb_ep *musb_match_ep(struct usb_gadget *g,
ep = gadget_find_ep_by_name(g, "ep2out");
break;
default:
+ break;
}
if (ep && usb_gadget_ep_match_desc(g, ep, desc, ep_comp))