hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
kernel/drivers/usb/host/ohci-q.c
....@@ -647,7 +647,7 @@
647647 /* ... and periodic urbs have extra accounting */
648648 periodic = ohci_to_hcd(ohci)->self.bandwidth_int_reqs++ == 0
649649 && ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs == 0;
650
- /* FALLTHROUGH */
650
+ fallthrough;
651651 case PIPE_BULK:
652652 info = is_out
653653 ? TD_T_TOGGLE | TD_CC | TD_DP_OUT
....@@ -879,11 +879,11 @@
879879 case TD_DATAUNDERRUN:
880880 if ((urb->transfer_flags & URB_SHORT_NOT_OK) == 0)
881881 break;
882
- /* fallthrough */
882
+ fallthrough;
883883 case TD_CC_STALL:
884884 if (usb_pipecontrol (urb->pipe))
885885 break;
886
- /* fallthrough */
886
+ fallthrough;
887887 default:
888888 ohci_dbg (ohci,
889889 "urb %p path %s ep%d%s %08x cc %d --> status %d\n",