diff mbox series

[V2] soc/tegra: pmc: Simplify resource lookup

Message ID 20240611075603.65118-1-jonathanh@nvidia.com
State Accepted
Headers show
Series [V2] soc/tegra: pmc: Simplify resource lookup | expand

Commit Message

Jon Hunter June 11, 2024, 7:56 a.m. UTC
Commit 6f4429e21a7f ("soc/tegra: pmc: Update address mapping sequence
for PMC apertures") updated the resource lookup code in the PMC driver.
Instead of calling platform_get_resource_byname() and
devm_ioremap_resource() simplify the code by simply calling
devm_platform_ioremap_resource_byname().

Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
---
Changes since V1:
- Update commit subject and commit message.

 drivers/soc/tegra/pmc.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

Comments

Thierry Reding June 27, 2024, 7:02 a.m. UTC | #1
From: Thierry Reding <treding@nvidia.com>


On Tue, 11 Jun 2024 08:56:03 +0100, Jon Hunter wrote:
> Commit 6f4429e21a7f ("soc/tegra: pmc: Update address mapping sequence
> for PMC apertures") updated the resource lookup code in the PMC driver.
> Instead of calling platform_get_resource_byname() and
> devm_ioremap_resource() simplify the code by simply calling
> devm_platform_ioremap_resource_byname().
> 
> 
> [...]

Applied, thanks!

[1/1] soc/tegra: pmc: Simplify resource lookup
      commit: cfcd6c46fec46cac3bf6658838d3ea329aff37aa

Best regards,
diff mbox series

Patch

diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c
index 91d0ad6ddefc..6c37d6eb8b49 100644
--- a/drivers/soc/tegra/pmc.c
+++ b/drivers/soc/tegra/pmc.c
@@ -2891,15 +2891,11 @@  static int tegra_pmc_probe(struct platform_device *pdev)
 		pmc->aotag = base;
 		pmc->scratch = base;
 	} else {
-		res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
-						"wake");
-		pmc->wake = devm_ioremap_resource(&pdev->dev, res);
+		pmc->wake = devm_platform_ioremap_resource_byname(pdev, "wake");
 		if (IS_ERR(pmc->wake))
 			return PTR_ERR(pmc->wake);
 
-		res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
-						"aotag");
-		pmc->aotag = devm_ioremap_resource(&pdev->dev, res);
+		pmc->aotag = devm_platform_ioremap_resource_byname(pdev, "aotag");
 		if (IS_ERR(pmc->aotag))
 			return PTR_ERR(pmc->aotag);