diff options
Diffstat (limited to 'drivers/usb/dwc3/core.c')
| -rw-r--r-- | drivers/usb/dwc3/core.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 422aea24afcd..2eb34c8b4065 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -646,9 +646,8 @@ static int dwc3_phy_setup(struct dwc3 *dwc)  			if (!(reg & DWC3_GUSB2PHYCFG_ULPI_UTMI))  				break;  		} -		/* FALLTHROUGH */ +		fallthrough;  	case DWC3_GHWPARAMS3_HSPHY_IFC_ULPI: -		/* FALLTHROUGH */  	default:  		break;  	} @@ -1411,7 +1410,7 @@ static void dwc3_check_params(struct dwc3 *dwc)  	default:  		dev_err(dev, "invalid maximum_speed parameter %d\n",  			dwc->maximum_speed); -		/* fall through */ +		fallthrough;  	case USB_SPEED_UNKNOWN:  		/* default to superspeed */  		dwc->maximum_speed = USB_SPEED_SUPER;  |