| .. | .. |
|---|
| 647 | 647 | /* ... and periodic urbs have extra accounting */ |
|---|
| 648 | 648 | periodic = ohci_to_hcd(ohci)->self.bandwidth_int_reqs++ == 0 |
|---|
| 649 | 649 | && ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs == 0; |
|---|
| 650 | | - /* FALLTHROUGH */ |
|---|
| 650 | + fallthrough; |
|---|
| 651 | 651 | case PIPE_BULK: |
|---|
| 652 | 652 | info = is_out |
|---|
| 653 | 653 | ? TD_T_TOGGLE | TD_CC | TD_DP_OUT |
|---|
| .. | .. |
|---|
| 879 | 879 | case TD_DATAUNDERRUN: |
|---|
| 880 | 880 | if ((urb->transfer_flags & URB_SHORT_NOT_OK) == 0) |
|---|
| 881 | 881 | break; |
|---|
| 882 | | - /* fallthrough */ |
|---|
| 882 | + fallthrough; |
|---|
| 883 | 883 | case TD_CC_STALL: |
|---|
| 884 | 884 | if (usb_pipecontrol (urb->pipe)) |
|---|
| 885 | 885 | break; |
|---|
| 886 | | - /* fallthrough */ |
|---|
| 886 | + fallthrough; |
|---|
| 887 | 887 | default: |
|---|
| 888 | 888 | ohci_dbg (ohci, |
|---|
| 889 | 889 | "urb %p path %s ep%d%s %08x cc %d --> status %d\n", |
|---|