diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-06-28 21:37:22 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-07-02 19:08:19 +0300 |
commit | 25b22e353c1f8d48e69fdef70a31be2f0d2bc410 (patch) | |
tree | 686e0c3f77dbcdb0e0301b19a2b540fb272e3f98 /drivers/usb/misc/appledisplay.c | |
parent | 169d3606dccfa3cfc5aa98b6e01705582074e1eb (diff) | |
download | linux-25b22e353c1f8d48e69fdef70a31be2f0d2bc410.tar.xz |
USB: 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 <gustavo@embeddedor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/misc/appledisplay.c')
-rw-r--r-- | drivers/usb/misc/appledisplay.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/misc/appledisplay.c b/drivers/usb/misc/appledisplay.c index b3eb8b989bd4..d746c26a8055 100644 --- a/drivers/usb/misc/appledisplay.c +++ b/drivers/usb/misc/appledisplay.c @@ -89,6 +89,7 @@ static void appledisplay_complete(struct urb *urb) dev_err(dev, "OVERFLOW with data length %d, actual length is %d\n", ACD_URB_BUFFER_LEN, pdata->urb->actual_length); + /* fall through */ case -ECONNRESET: case -ENOENT: case -ESHUTDOWN: |