Commit 2ade2891 authored by Yangtao Li's avatar Yangtao Li Committed by Damien Le Moal
Browse files

ata: pata_ftide010: 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 avatarYangtao Li <frank.li@vivo.com>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Reviewed-by: default avatarSergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: default avatarDamien Le Moal <dlemoal@kernel.org>
parent 9402b802
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -469,11 +469,7 @@ static int pata_ftide010_probe(struct platform_device *pdev)
	if (irq < 0)
		return irq;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res)
		return -ENODEV;

	ftide->base = devm_ioremap_resource(dev, res);
	ftide->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
	if (IS_ERR(ftide->base))
		return PTR_ERR(ftide->base);