Commit 42c67aa2 authored by Ye Xingchen's avatar Ye Xingchen Committed by Thierry Reding
Browse files

soc/tegra: flowctrl: Use devm_platform_get_and_ioremap_resource()



Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.

Signed-off-by: default avatarYe Xingchen <ye.xingchen@zte.com.cn>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent c299a2e6
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -156,10 +156,8 @@ void flowctrl_cpu_suspend_exit(unsigned int cpuid)
static int tegra_flowctrl_probe(struct platform_device *pdev)
{
	void __iomem *base = tegra_flowctrl_base;
	struct resource *res;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	tegra_flowctrl_base = devm_ioremap_resource(&pdev->dev, res);
	tegra_flowctrl_base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
	if (IS_ERR(tegra_flowctrl_base))
		return PTR_ERR(tegra_flowctrl_base);