phy: cadence-torrent: Use devm_platform_ioremap_resource() to get reg addresses
Use devm_platform_ioremap_resource() to get register addresses instead of boilerplate code. Signed-off-by: Swapnil Jakhade <sjakhade@cadence.com> Link: https://lore.kernel.org/r/1600280911-9214-3-git-send-email-sjakhade@cadence.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
Родитель
29d1fd2f2c
Коммит
46d205af30
|
@ -1705,7 +1705,6 @@ static int cdns_regmap_init_torrent_dp(struct cdns_torrent_phy *cdns_phy,
|
|||
|
||||
static int cdns_torrent_phy_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct resource *regs;
|
||||
struct cdns_torrent_phy *cdns_phy;
|
||||
struct device *dev = &pdev->dev;
|
||||
struct phy_provider *phy_provider;
|
||||
|
@ -1739,8 +1738,7 @@ static int cdns_torrent_phy_probe(struct platform_device *pdev)
|
|||
return PTR_ERR(cdns_phy->clk);
|
||||
}
|
||||
|
||||
regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
cdns_phy->sd_base = devm_ioremap_resource(&pdev->dev, regs);
|
||||
cdns_phy->sd_base = devm_platform_ioremap_resource(pdev, 0);
|
||||
if (IS_ERR(cdns_phy->sd_base))
|
||||
return PTR_ERR(cdns_phy->sd_base);
|
||||
|
||||
|
@ -1830,9 +1828,7 @@ static int cdns_torrent_phy_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
/* DPTX registers */
|
||||
regs = platform_get_resource(pdev, IORESOURCE_MEM, 1);
|
||||
cdns_phy->base = devm_ioremap_resource(&pdev->dev,
|
||||
regs);
|
||||
cdns_phy->base = devm_platform_ioremap_resource(pdev, 1);
|
||||
if (IS_ERR(cdns_phy->base)) {
|
||||
ret = PTR_ERR(cdns_phy->base);
|
||||
goto put_child;
|
||||
|
|
Загрузка…
Ссылка в новой задаче