diff options
author | Chunfeng Yun <chunfeng.yun@mediatek.com> | 2020-11-06 07:08:41 +0100 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-11-16 08:17:47 +0100 |
commit | 5d797059ff57b2213153523f4cf031a811e53dbf (patch) | |
tree | 089d6f0e432586e9223d1b7bfa989765ab43deef /drivers/phy/phy-xgene.c | |
parent | phy: marvell: convert to devm_platform_ioremap_resource (diff) | |
download | linux-5d797059ff57b2213153523f4cf031a811e53dbf.tar.xz linux-5d797059ff57b2213153523f4cf031a811e53dbf.zip |
phy: phy-xgene: convert to devm_platform_ioremap_resource
Use devm_platform_ioremap_resource to simplify code
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Link: https://lore.kernel.org/r/1604642930-29019-8-git-send-email-chunfeng.yun@mediatek.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy/phy-xgene.c')
-rw-r--r-- | drivers/phy/phy-xgene.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/phy/phy-xgene.c b/drivers/phy/phy-xgene.c index b88922e7de1d..f4cd590fbde7 100644 --- a/drivers/phy/phy-xgene.c +++ b/drivers/phy/phy-xgene.c @@ -1644,7 +1644,6 @@ static int xgene_phy_probe(struct platform_device *pdev) { struct phy_provider *phy_provider; struct xgene_phy_ctx *ctx; - struct resource *res; u32 default_spd[] = DEFAULT_SATA_SPD_SEL; u32 default_txboost_gain[] = DEFAULT_SATA_TXBOOST_GAIN; u32 default_txeye_direction[] = DEFAULT_SATA_TXEYEDIRECTION; @@ -1661,8 +1660,7 @@ static int xgene_phy_probe(struct platform_device *pdev) ctx->dev = &pdev->dev; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - ctx->sds_base = devm_ioremap_resource(&pdev->dev, res); + ctx->sds_base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(ctx->sds_base)) return PTR_ERR(ctx->sds_base); |