[media] uvcvideo: annotate a switch fall through
Without annotations, gcc 7.1 will complain. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
ec33fbd585
commit
af3a848064
|
@ -1323,7 +1323,7 @@ static void uvc_video_complete(struct urb *urb)
|
||||||
default:
|
default:
|
||||||
uvc_printk(KERN_WARNING, "Non-zero status (%d) in video "
|
uvc_printk(KERN_WARNING, "Non-zero status (%d) in video "
|
||||||
"completion handler.\n", urb->status);
|
"completion handler.\n", urb->status);
|
||||||
|
/* fall through */
|
||||||
case -ENOENT: /* usb_kill_urb() called. */
|
case -ENOENT: /* usb_kill_urb() called. */
|
||||||
if (stream->frozen)
|
if (stream->frozen)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue