ata: ahci_seattle: Convert to devm_platform_ioremap_resource()
authorYangtao Li <frank.li@vivo.com>
Mon, 10 Jul 2023 02:45:41 +0000 (10:45 +0800)
committerDamien Le Moal <dlemoal@kernel.org>
Wed, 2 Aug 2023 08:37:06 +0000 (17:37 +0900)
Use devm_platform_ioremap_resource() to simplify code.

Signed-off-by: Yangtao Li <frank.li@vivo.com>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
drivers/ata/ahci_seattle.c

index adb33af..59f97aa 100644 (file)
@@ -131,8 +131,7 @@ static const struct ata_port_info *ahci_seattle_get_port_info(
        if (!plat_data)
                return &ahci_port_info;
 
-       plat_data->sgpio_ctrl = devm_ioremap_resource(dev,
-                             platform_get_resource(pdev, IORESOURCE_MEM, 1));
+       plat_data->sgpio_ctrl = devm_platform_ioremap_resource(pdev, 1);
        if (IS_ERR(plat_data->sgpio_ctrl))
                return &ahci_port_info;