diff mbox series

[5/8] nvmem: rockchip-otp: Use devm_reset_control_array_get_exclusive()

Message ID 20230501084401.765169-6-cristian.ciocaltea@collabora.com (mailing list archive)
State New, archived
Headers show
Series Add RK3588 OTP memory support | expand

Commit Message

Cristian Ciocaltea May 1, 2023, 8:43 a.m. UTC
In preparation to support new Rockchip OTP memory devices having
specific reset configurations, switch devm_reset_control_get() to
devm_reset_control_array_get_exclusive().

Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
---
 drivers/nvmem/rockchip-otp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Heiko Stuebner May 2, 2023, 8:51 a.m. UTC | #1
Am Montag, 1. Mai 2023, 10:43:57 CEST schrieb Cristian Ciocaltea:
> In preparation to support new Rockchip OTP memory devices having
> specific reset configurations, switch devm_reset_control_get() to
> devm_reset_control_array_get_exclusive().
> 
> Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>

Reviewed-by: Heiko Stuebner <heiko@sntech.de>
diff mbox series

Patch

diff --git a/drivers/nvmem/rockchip-otp.c b/drivers/nvmem/rockchip-otp.c
index e308dd3b4eb1..b74d98f82ae5 100644
--- a/drivers/nvmem/rockchip-otp.c
+++ b/drivers/nvmem/rockchip-otp.c
@@ -263,7 +263,7 @@  static int rockchip_otp_probe(struct platform_device *pdev)
 	if (ret)
 		return ret;
 
-	otp->rst = devm_reset_control_get(dev, "phy");
+	otp->rst = devm_reset_control_array_get_exclusive(dev);
 	if (IS_ERR(otp->rst))
 		return PTR_ERR(otp->rst);