In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 145713
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
        mode = 0;
        max = get_unaligned_le16(&desc->wMaxPacketSize);
        switch (max) {
-       case 64:        mode++;
-       case 32:        mode++;
-       case 16:        mode++;
-       case 8:         mode <<= 3;
-                       break;
+       case 64:
+               mode++; /* fall through */
+       case 32:
+               mode++; /* fall through */
+       case 16:
+               mode++; /* fall through */
+       case 8:
+               mode <<= 3;
+               break;
        default:
                return -EINVAL;
        }