diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-05-19 09:06:07 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-05-19 09:06:07 -0300 |
commit | af3a8480646cf5816528c44210dd4a70fb2026e9 (patch) | |
tree | 601203b0826ba33d5d0ed546f3c19a3ec0d36ff8 /drivers | |
parent | ec33fbd585f76b0803a90ee66804fa6f937dccaa (diff) |
[media] uvcvideo: annotate a switch fall through
Without annotations, gcc 7.1 will complain.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/usb/uvc/uvc_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/uvc/uvc_video.c b/drivers/media/usb/uvc/uvc_video.c index a29f39d4e05b..fb86d6af398d 100644 --- a/drivers/media/usb/uvc/uvc_video.c +++ b/drivers/media/usb/uvc/uvc_video.c @@ -1323,7 +1323,7 @@ static void uvc_video_complete(struct urb *urb) default: uvc_printk(KERN_WARNING, "Non-zero status (%d) in video " "completion handler.\n", urb->status); - + /* fall through */ case -ENOENT: /* usb_kill_urb() called. */ if (stream->frozen) return; |