diff options
| author | Dmitry Torokhov <[email protected]> | 2023-08-30 16:06:38 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2023-08-30 16:06:38 -0700 | 
| commit | 1ac731c529cd4d6adbce134754b51ff7d822b145 (patch) | |
| tree | 143ab3f35ca5f3b69f583c84e6964b17139c2ec1 /drivers/phy/st/phy-stm32-usbphyc.c | |
| parent | 07b4c950f27bef0362dc6ad7ee713aab61d58149 (diff) | |
| parent | 54116d442e001e1b6bd482122043b1870998a1f3 (diff) | |
Merge branch 'next' into for-linus
Prepare input updates for 6.6 merge window.
Diffstat (limited to 'drivers/phy/st/phy-stm32-usbphyc.c')
| -rw-r--r-- | drivers/phy/st/phy-stm32-usbphyc.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/phy/st/phy-stm32-usbphyc.c b/drivers/phy/st/phy-stm32-usbphyc.c index 5bb9647b078f..0a8552628cbd 100644 --- a/drivers/phy/st/phy-stm32-usbphyc.c +++ b/drivers/phy/st/phy-stm32-usbphyc.c @@ -317,6 +317,9 @@ static int stm32_usbphyc_pll_enable(struct stm32_usbphyc *usbphyc)  	stm32_usbphyc_set_bits(pll_reg, PLLEN); +	/* Wait for maximum lock time */ +	usleep_range(200, 300); +  	return 0;  reg_disable: @@ -766,7 +769,7 @@ clk_disable:  	return ret;  } -static int stm32_usbphyc_remove(struct platform_device *pdev) +static void stm32_usbphyc_remove(struct platform_device *pdev)  {  	struct stm32_usbphyc *usbphyc = dev_get_drvdata(&pdev->dev);  	int port; @@ -779,8 +782,6 @@ static int stm32_usbphyc_remove(struct platform_device *pdev)  	stm32_usbphyc_clk48_unregister(usbphyc);  	clk_disable_unprepare(usbphyc->clk); - -	return 0;  }  static int __maybe_unused stm32_usbphyc_resume(struct device *dev) @@ -810,7 +811,7 @@ MODULE_DEVICE_TABLE(of, stm32_usbphyc_of_match);  static struct platform_driver stm32_usbphyc_driver = {  	.probe = stm32_usbphyc_probe, -	.remove = stm32_usbphyc_remove, +	.remove_new = stm32_usbphyc_remove,  	.driver = {  		.of_match_table = stm32_usbphyc_of_match,  		.name = "stm32-usbphyc",  |