Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1202641
| From | Robert Baldyga <r.baldyga@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/2] usb: gadget: goku_udc: fix build break by adding missing 'break' |
| Date | 2015-08-07 14:20 +0200 |
| Message-ID | <pUOMV-7B6-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Add missing break after 'default' label to fix compilation error. Signed-off-by: Robert Baldyga <r.baldyga@samsung.com> --- drivers/usb/gadget/udc/goku_udc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/gadget/udc/goku_udc.c b/drivers/usb/gadget/udc/goku_udc.c index 2b628b3..dbb51a4 100644 --- a/drivers/usb/gadget/udc/goku_udc.c +++ b/drivers/usb/gadget/udc/goku_udc.c @@ -1013,6 +1013,7 @@ static struct usb_ep *goku_match_ep(struct usb_gadget *g, } break; default: + break; } return NULL; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 1/2] usb: gadget: goku_udc: fix build break by adding missing 'break' Robert Baldyga <r.baldyga@samsung.com> - 2015-08-07 14:20 +0200 Re: [PATCH 1/2] usb: gadget: goku_udc: fix build break by adding missing 'break' Robert Baldyga <r.baldyga@samsung.com> - 2015-08-07 14:30 +0200
csiph-web