public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] usb: gadget: goku_udc: fix build break by adding missing 'break'
@ 2015-08-07 12:13 Robert Baldyga
  2015-08-07 12:13 ` [PATCH 2/2] usb: musb: gadget: " Robert Baldyga
  2015-08-07 12:23 ` [PATCH 1/2] usb: gadget: goku_udc: " Robert Baldyga
  0 siblings, 2 replies; 4+ messages in thread
From: Robert Baldyga @ 2015-08-07 12:13 UTC (permalink / raw)
  To: balbi; +Cc: gregkh, linux-usb, linux-kernel, Robert Baldyga

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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-08-07 14:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-07 12:13 [PATCH 1/2] usb: gadget: goku_udc: fix build break by adding missing 'break' Robert Baldyga
2015-08-07 12:13 ` [PATCH 2/2] usb: musb: gadget: " Robert Baldyga
2015-08-07 14:27   ` Felipe Balbi
2015-08-07 12:23 ` [PATCH 1/2] usb: gadget: goku_udc: " Robert Baldyga

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox