Commit a53e35db70d1 ("reset: Ensure drivers are explicit when requesting
reset lines") started to transition the reset control request API calls
to explicitly state whether the driver needs exclusive or shared reset
control behavior. Convert all drivers requesting exclusive resets to the
explicit API call so the temporary transition helpers can be removed.No functional changes. Cc: Kishon Vijay Abraham I <[email protected]> Signed-off-by: Philipp Zabel <[email protected]> --- drivers/phy/marvell/phy-berlin-usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/phy/marvell/phy-berlin-usb.c b/drivers/phy/marvell/phy-berlin-usb.c index 2017751ede263..d4473ecd1f6b8 100644 --- a/drivers/phy/marvell/phy-berlin-usb.c +++ b/drivers/phy/marvell/phy-berlin-usb.c @@ -181,7 +181,7 @@ static int phy_berlin_usb_probe(struct platform_device *pdev) if (IS_ERR(priv->base)) return PTR_ERR(priv->base); - priv->rst_ctrl = devm_reset_control_get(&pdev->dev, NULL); + priv->rst_ctrl = devm_reset_control_get_exclusive(&pdev->dev, NULL); if (IS_ERR(priv->rst_ctrl)) return PTR_ERR(priv->rst_ctrl); -- 2.11.0

