mirror of
https://github.com/u-boot/u-boot.git
synced 2025-01-19 17:23:24 +08:00
net: fec_mxc: Avoid enable regulator failure
Change to regulator_set_enable_if_allowed to avoid enable failure, in case same phy supply shared by multiple FEC controllers. Signed-off-by: Ye Li <ye.li@nxp.com>
This commit is contained in:
parent
6cd789c7fd
commit
9dc7d5270b
@ -1310,7 +1310,7 @@ static int fecmxc_probe(struct udevice *dev)
|
||||
|
||||
#ifdef CONFIG_DM_REGULATOR
|
||||
if (priv->phy_supply) {
|
||||
ret = regulator_set_enable(priv->phy_supply, true);
|
||||
ret = regulator_set_enable_if_allowed(priv->phy_supply, true);
|
||||
if (ret) {
|
||||
printf("%s: Error enabling phy supply\n", dev->name);
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user