diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-07-10 04:45:49 +0200 |
---|---|---|
committer | Damien Le Moal <dlemoal@kernel.org> | 2023-08-02 10:37:06 +0200 |
commit | 2ade28916d20cc8fae0dd25da58a75ad62487424 (patch) | |
tree | 4523e7aa005049781ef93fb0fe23624dd2abe512 /drivers/ata/pata_ftide010.c | |
parent | ata: pata_ixp4xx: Remove unnecessary return value check (diff) | |
download | linux-2ade28916d20cc8fae0dd25da58a75ad62487424.tar.xz linux-2ade28916d20cc8fae0dd25da58a75ad62487424.zip |
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/pata_ftide010.c')
-rw-r--r-- | drivers/ata/pata_ftide010.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/ata/pata_ftide010.c b/drivers/ata/pata_ftide010.c index 9409fbd48c5a..ae455f3de18e 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); |