mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
net: ethernet: ave: Fix error returns in ave_init
[ Upstream commit1264d7fa3a] When regmap_update_bits failed in ave_init(), calls of the functions reset_control_assert() and clk_disable_unprepare() were missed. Add goto out_reset_assert to do this. Fixes:57878f2f46("net: ethernet: ave: add support for phy-mode setting of system controller") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Wang Hai <wanghai38@huawei.com> Reviewed-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
8a330edef5
commit
535f366f07
|
|
@ -1196,7 +1196,7 @@ static int ave_init(struct net_device *ndev)
|
|||
ret = regmap_update_bits(priv->regmap, SG_ETPINMODE,
|
||||
priv->pinmode_mask, priv->pinmode_val);
|
||||
if (ret)
|
||||
return ret;
|
||||
goto out_reset_assert;
|
||||
|
||||
ave_global_reset(ndev);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user