| .. | .. |
|---|
| 581 | 581 | /* HNP failed for some reason (A_AIDL_BDIS timeout) */ |
|---|
| 582 | 582 | notresponding(isp); |
|---|
| 583 | 583 | |
|---|
| 584 | | - /* FALLTHROUGH */ |
|---|
| 584 | + fallthrough; |
|---|
| 585 | 585 | case OTG_STATE_A_VBUS_ERR: |
|---|
| 586 | 586 | isp->phy.otg->state = OTG_STATE_A_WAIT_VFALL; |
|---|
| 587 | 587 | pr_debug(" --> a_wait_vfall\n"); |
|---|
| 588 | | - /* FALLTHROUGH */ |
|---|
| 588 | + fallthrough; |
|---|
| 589 | 589 | case OTG_STATE_A_WAIT_VFALL: |
|---|
| 590 | 590 | /* FIXME usbcore thinks port power is still on ... */ |
|---|
| 591 | 591 | clr |= OTG1_VBUS_DRV; |
|---|
| .. | .. |
|---|
| 595 | 595 | isp->phy.otg->state = OTG_STATE_A_WAIT_VRISE; |
|---|
| 596 | 596 | pr_debug(" --> a_wait_vrise\n"); |
|---|
| 597 | 597 | } |
|---|
| 598 | | - /* FALLTHROUGH */ |
|---|
| 598 | + fallthrough; |
|---|
| 599 | 599 | default: |
|---|
| 600 | 600 | toggle(OTG_DRV_VBUS, OTG1_VBUS_DRV); |
|---|
| 601 | 601 | } |
|---|
| .. | .. |
|---|
| 945 | 945 | switch (state) { |
|---|
| 946 | 946 | case OTG_STATE_B_IDLE: |
|---|
| 947 | 947 | a_idle(isp, "idle"); |
|---|
| 948 | | - /* FALLTHROUGH */ |
|---|
| 948 | + fallthrough; |
|---|
| 949 | 949 | case OTG_STATE_A_IDLE: |
|---|
| 950 | 950 | enable_vbus_source(isp); |
|---|
| 951 | | - /* FALLTHROUGH */ |
|---|
| 951 | + fallthrough; |
|---|
| 952 | 952 | case OTG_STATE_A_WAIT_VRISE: |
|---|
| 953 | 953 | /* we skip over OTG_STATE_A_WAIT_BCON, since |
|---|
| 954 | 954 | * the HC will transition to A_HOST (or |
|---|
| .. | .. |
|---|
| 1032 | 1032 | OTG1_DP_PULLUP); |
|---|
| 1033 | 1033 | dump_regs(isp, __func__); |
|---|
| 1034 | 1034 | #endif |
|---|
| 1035 | | - /* FALLTHROUGH */ |
|---|
| 1035 | + fallthrough; |
|---|
| 1036 | 1036 | case OTG_STATE_B_SRP_INIT: |
|---|
| 1037 | 1037 | b_idle(isp, __func__); |
|---|
| 1038 | 1038 | l = omap_readl(OTG_CTRL) & OTG_XCEIV_OUTPUTS; |
|---|
| 1039 | 1039 | omap_writel(l, OTG_CTRL); |
|---|
| 1040 | | - /* FALLTHROUGH */ |
|---|
| 1040 | + fallthrough; |
|---|
| 1041 | 1041 | case OTG_STATE_B_IDLE: |
|---|
| 1042 | 1042 | if (otg->gadget && (isp_bstat & OTG_B_SESS_VLD)) { |
|---|
| 1043 | 1043 | #ifdef CONFIG_USB_OTG |
|---|