Commit 8e6a257a authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski
Browse files

memory: ti-emif-pm: simplify platform_get_resource()



Use devm_platform_get_and_ioremap_resource() instead of
platform_get_resource() and devm_ioremap_resource().

Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220419142859.380566-4-krzysztof.kozlowski@linaro.org
parent 083008de
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -290,9 +290,9 @@ static int ti_emif_probe(struct platform_device *pdev)

	emif_data->pm_data.ti_emif_sram_config = (unsigned long)match->data;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	emif_data->pm_data.ti_emif_base_addr_virt = devm_ioremap_resource(dev,
									  res);
	emif_data->pm_data.ti_emif_base_addr_virt = devm_platform_get_and_ioremap_resource(pdev,
											   0,
											   &res);
	if (IS_ERR(emif_data->pm_data.ti_emif_base_addr_virt)) {
		ret = PTR_ERR(emif_data->pm_data.ti_emif_base_addr_virt);
		return ret;