Commit 40d76346 authored by Kunihiko Hayashi's avatar Kunihiko Hayashi Committed by Kishon Vijay Abraham I

phy: socionext: Use devm_platform_ioremap_resource()

Use devm_platform_ioremap_resource() to simplify the code.
Signed-off-by: default avatarKunihiko Hayashi <hayashi.kunihiko@socionext.com>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent 0347f0dc
...@@ -163,7 +163,6 @@ static int uniphier_pciephy_probe(struct platform_device *pdev) ...@@ -163,7 +163,6 @@ static int uniphier_pciephy_probe(struct platform_device *pdev)
struct phy_provider *phy_provider; struct phy_provider *phy_provider;
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct regmap *regmap; struct regmap *regmap;
struct resource *res;
struct phy *phy; struct phy *phy;
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
...@@ -176,8 +175,7 @@ static int uniphier_pciephy_probe(struct platform_device *pdev) ...@@ -176,8 +175,7 @@ static int uniphier_pciephy_probe(struct platform_device *pdev)
priv->dev = dev; priv->dev = dev;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); priv->base = devm_platform_ioremap_resource(pdev, 0);
priv->base = devm_ioremap_resource(dev, res);
if (IS_ERR(priv->base)) if (IS_ERR(priv->base))
return PTR_ERR(priv->base); return PTR_ERR(priv->base);
......
...@@ -309,7 +309,6 @@ static int uniphier_u3hsphy_probe(struct platform_device *pdev) ...@@ -309,7 +309,6 @@ static int uniphier_u3hsphy_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct uniphier_u3hsphy_priv *priv; struct uniphier_u3hsphy_priv *priv;
struct phy_provider *phy_provider; struct phy_provider *phy_provider;
struct resource *res;
struct phy *phy; struct phy *phy;
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
...@@ -322,8 +321,7 @@ static int uniphier_u3hsphy_probe(struct platform_device *pdev) ...@@ -322,8 +321,7 @@ static int uniphier_u3hsphy_probe(struct platform_device *pdev)
priv->data->nparams > MAX_PHY_PARAMS)) priv->data->nparams > MAX_PHY_PARAMS))
return -EINVAL; return -EINVAL;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); priv->base = devm_platform_ioremap_resource(pdev, 0);
priv->base = devm_ioremap_resource(dev, res);
if (IS_ERR(priv->base)) if (IS_ERR(priv->base))
return PTR_ERR(priv->base); return PTR_ERR(priv->base);
......
...@@ -215,7 +215,6 @@ static int uniphier_u3ssphy_probe(struct platform_device *pdev) ...@@ -215,7 +215,6 @@ static int uniphier_u3ssphy_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct uniphier_u3ssphy_priv *priv; struct uniphier_u3ssphy_priv *priv;
struct phy_provider *phy_provider; struct phy_provider *phy_provider;
struct resource *res;
struct phy *phy; struct phy *phy;
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
...@@ -228,8 +227,7 @@ static int uniphier_u3ssphy_probe(struct platform_device *pdev) ...@@ -228,8 +227,7 @@ static int uniphier_u3ssphy_probe(struct platform_device *pdev)
priv->data->nparams > MAX_PHY_PARAMS)) priv->data->nparams > MAX_PHY_PARAMS))
return -EINVAL; return -EINVAL;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); priv->base = devm_platform_ioremap_resource(pdev, 0);
priv->base = devm_ioremap_resource(dev, res);
if (IS_ERR(priv->base)) if (IS_ERR(priv->base))
return PTR_ERR(priv->base); return PTR_ERR(priv->base);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment