@@ -888,19 +888,19 @@ static int tcphy_parse_dt(struct rockchip_typec_phy *tcphy,
return PTR_ERR(tcphy->clk_ref);
}
- tcphy->uphy_rst = devm_reset_control_get(dev, "uphy");
+ tcphy->uphy_rst = devm_reset_control_get_exclusive(dev, "uphy");
if (IS_ERR(tcphy->uphy_rst)) {
dev_err(dev, "no uphy_rst reset control found\n");
return PTR_ERR(tcphy->uphy_rst);
}
- tcphy->pipe_rst = devm_reset_control_get(dev, "uphy-pipe");
+ tcphy->pipe_rst = devm_reset_control_get_exclusive(dev, "uphy-pipe");
if (IS_ERR(tcphy->pipe_rst)) {
dev_err(dev, "no pipe_rst reset control found\n");
return PTR_ERR(tcphy->pipe_rst);
}
- tcphy->tcphy_rst = devm_reset_control_get(dev, "uphy-tcphy");
+ tcphy->tcphy_rst = devm_reset_control_get_exclusive(dev, "uphy-tcphy");
if (IS_ERR(tcphy->tcphy_rst)) {
dev_err(dev, "no tcphy_rst reset control found\n");
return PTR_ERR(tcphy->tcphy_rst);
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 <kishon@ti.com> Cc: Heiko Stuebner <heiko@sntech.de> Cc: linux-rockchip@lists.infradead.org Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> --- drivers/phy/rockchip/phy-rockchip-typec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)