Mark switch cases where we are expecting to fall through.
This patch fixes the following warning (Building: tct_hammer_defconfig arm):
drivers/usb/gadget/udc/s3c2410_udc.c:314:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/gadget/udc/s3c2410_udc.c:418:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
        switch (idx) {
        default:
                idx = 0;
+               /* fall through */
        case 0:
                fifo_reg = S3C2410_UDC_EP0_FIFO_REG;
                break;
        switch (idx) {
        default:
                idx = 0;
+               /* fall through */
        case 0:
                fifo_reg = S3C2410_UDC_EP0_FIFO_REG;
                break;