aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorYangtao Li <frank.li@vivo.com>2023-07-10 10:45:49 +0800
committerDamien Le Moal <dlemoal@kernel.org>2023-08-02 17:37:06 +0900
commit2ade28916d20cc8fae0dd25da58a75ad62487424 (patch)
tree4523e7aa005049781ef93fb0fe23624dd2abe512 /drivers/ata
parent9402b802aa998d3f41efda331699d1621db957ec (diff)
downloadlinux-2ade28916d20cc8fae0dd25da58a75ad62487424.tar.gz
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: Yangtao Li <frank.li@vivo.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru> Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/pata_ftide010.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/ata/pata_ftide010.c b/drivers/ata/pata_ftide010.c
index 9409fbd48c5a1b..ae455f3de18e12 100644
--- a/drivers/ata/pata_ftide010.c
+++ b/drivers/ata/pata_ftide010.c
@@ -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);