From: Mikhail Kshevetskiy Date: Sat, 1 Nov 2025 00:44:53 +0000 (+0300) Subject: reset: airoha: unify code using SCU regmap helper X-Git-Tag: v2026.01-rc2~7^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1cae1f63d9a483853fb28e9b74607d27a7ed2cc;p=thirdparty%2Fu-boot.git reset: airoha: unify code using SCU regmap helper This patch unify probing code using airoha SCU regmap helper, thus a common function can be used instead of an7581/an7583 specific ones. Signed-off-by: Mikhail Kshevetskiy --- diff --git a/drivers/reset/reset-airoha.c b/drivers/reset/reset-airoha.c index a618bf62b4d..58b868d9855 100644 --- a/drivers/reset/reset-airoha.c +++ b/drivers/reset/reset-airoha.c @@ -11,6 +11,7 @@ #include #include #include +#include #include @@ -153,11 +154,10 @@ static struct reset_ops airoha_reset_ops = { static int airoha_reset_probe(struct udevice *dev) { struct airoha_reset_priv *priv = dev_get_priv(dev); - int ret; - ret = regmap_init_mem(dev_ofnode(dev), &priv->map); - if (ret) - return ret; + priv->map = airoha_get_scu_regmap(); + if (IS_ERR(priv->map)) + return PTR_ERR(priv->map); priv->bank_ofs = en7581_rst_ofs; priv->idx_map = en7581_rst_map;