83 lines
2.9 KiB
Diff
83 lines
2.9 KiB
Diff
From 6b252db6394d63c4ceb23d07505e902eba481a04 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Ond=C5=99ej=20Jirman?= <megi@xff.cz>
|
|
Date: Tue, 20 Aug 2019 14:29:29 +0200
|
|
Subject: [PATCH 056/389] net: stmmac: sun8i: Rename PHY regulator variable to
|
|
regulator_phy
|
|
|
|
We'll be adding further optional regulators, and this makes it clearer
|
|
what the regulator is for.
|
|
|
|
Signed-off-by: Ondrej Jirman <megi@xff.cz>
|
|
---
|
|
.../net/ethernet/stmicro/stmmac/dwmac-sun8i.c | 18 +++++++++---------
|
|
1 file changed, 9 insertions(+), 9 deletions(-)
|
|
|
|
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c
|
|
index a1e2304654b2..47f0131be3c8 100644
|
|
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c
|
|
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c
|
|
@@ -59,7 +59,7 @@ struct emac_variant {
|
|
|
|
/* struct sunxi_priv_data - hold all sunxi private data
|
|
* @ephy_clk: reference to the optional EPHY clock for the internal PHY
|
|
- * @regulator: reference to the optional regulator
|
|
+ * @regulator_phy: reference to the optional regulator
|
|
* @rst_ephy: reference to the optional EPHY reset for the internal PHY
|
|
* @variant: reference to the current board variant
|
|
* @regmap: regmap for using the syscon
|
|
@@ -69,7 +69,7 @@ struct emac_variant {
|
|
*/
|
|
struct sunxi_priv_data {
|
|
struct clk *ephy_clk;
|
|
- struct regulator *regulator;
|
|
+ struct regulator *regulator_phy;
|
|
struct reset_control *rst_ephy;
|
|
const struct emac_variant *variant;
|
|
struct regmap_field *regmap_field;
|
|
@@ -570,9 +570,9 @@ static int sun8i_dwmac_init(struct platform_device *pdev, void *priv)
|
|
struct sunxi_priv_data *gmac = priv;
|
|
int ret;
|
|
|
|
- ret = regulator_enable(gmac->regulator);
|
|
+ ret = regulator_enable(gmac->regulator_phy);
|
|
if (ret) {
|
|
- dev_err(&pdev->dev, "Fail to enable regulator\n");
|
|
+ dev_err(&pdev->dev, "Fail to enable PHY regulator\n");
|
|
return ret;
|
|
}
|
|
|
|
@@ -585,7 +585,7 @@ static int sun8i_dwmac_init(struct platform_device *pdev, void *priv)
|
|
return 0;
|
|
|
|
err_disable_regulator:
|
|
- regulator_disable(gmac->regulator);
|
|
+ regulator_disable(gmac->regulator_phy);
|
|
|
|
return ret;
|
|
}
|
|
@@ -1032,7 +1032,7 @@ static void sun8i_dwmac_exit(struct platform_device *pdev, void *priv)
|
|
if (gmac->variant->soc_has_internal_phy)
|
|
sun8i_dwmac_unpower_internal_phy(gmac);
|
|
|
|
- regulator_disable(gmac->regulator);
|
|
+ regulator_disable(gmac->regulator_phy);
|
|
}
|
|
|
|
static void sun8i_dwmac_set_mac_loopback(void __iomem *ioaddr, bool enable)
|
|
@@ -1154,9 +1154,9 @@ static int sun8i_dwmac_probe(struct platform_device *pdev)
|
|
}
|
|
|
|
/* Optional regulator for PHY */
|
|
- gmac->regulator = devm_regulator_get(dev, "phy");
|
|
- if (IS_ERR(gmac->regulator))
|
|
- return dev_err_probe(dev, PTR_ERR(gmac->regulator),
|
|
+ gmac->regulator_phy = devm_regulator_get(dev, "phy");
|
|
+ if (IS_ERR(gmac->regulator_phy))
|
|
+ return dev_err_probe(dev, PTR_ERR(gmac->regulator_phy),
|
|
"Failed to get PHY regulator\n");
|
|
|
|
/* The "GMAC clock control" register might be located in the
|
|
--
|
|
2.35.3
|
|
|