1
0
Fork 0

usb: gadget: udc: dummy_hcd: mark expected switch fall-throughs

In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.

Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Gustavo A. R. Silva 2017-10-25 12:28:00 -05:00 committed by Greg Kroah-Hartman
parent 624916a950
commit f93de0c27e
1 changed files with 3 additions and 0 deletions

View File

@ -569,10 +569,12 @@ static int dummy_enable(struct usb_ep *_ep,
if (max <= 1024)
break;
/* save a return statement */
/* fall through */
case USB_SPEED_FULL:
if (max <= 64)
break;
/* save a return statement */
/* fall through */
default:
if (max <= 8)
break;
@ -590,6 +592,7 @@ static int dummy_enable(struct usb_ep *_ep,
if (max <= 1024)
break;
/* save a return statement */
/* fall through */
case USB_SPEED_FULL:
if (max <= 1023)
break;