diff options
| author | Adam Ford <[email protected]> | 2019-01-15 11:26:48 -0600 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2019-02-15 12:41:12 +0100 |
| commit | 8f1a5ac797baac5b40f93eac80a7810f0a771ecf (patch) | |
| tree | 266dc2acc4c4b55d25753a71faad7e1f41c07dc8 /drivers | |
| parent | 8dd0dff2695cd6f6f863af37a53a042724f5b263 (diff) | |
net: dm: fec: Fix regulator enable when using DM_REGULATOR
When DM_REGULATOR is enabled, the driver attempts to call
regulator_autoset() which expects the regulators to be on at boot
and/or always on and fails if they are not true.
For a more generic approach, this patch just calls
regulator_set_enable() which shouldn't have such restrictions.
Fixes: ad8c43cbcafb ("net: dm: fec: Support the phy-supply
binding")
Signed-off-by: Adam Ford <[email protected]>
Tested-by: Martin Fuzzey <[email protected]>
Acked-by: Joe Hershberger <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/fec_mxc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 1a59026a62f..a14fe43a5b0 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -1348,7 +1348,7 @@ static int fecmxc_probe(struct udevice *dev) #ifdef CONFIG_DM_REGULATOR if (priv->phy_supply) { - ret = regulator_autoset(priv->phy_supply); + ret = regulator_set_enable(priv->phy_supply, true); if (ret) { printf("%s: Error enabling phy supply\n", dev->name); return ret; |
