ata: libata-core: Remove ata_port_resume_async()
authorDamien Le Moal <dlemoal@kernel.org>
Mon, 4 Sep 2023 11:59:35 +0000 (20:59 +0900)
committerDamien Le Moal <dlemoal@kernel.org>
Tue, 3 Oct 2023 00:39:49 +0000 (09:39 +0900)
Remove ata_port_resume_async() and replace it with a modified
ata_port_resume() taking an additional bool argument indicating if
ata EH resume operation should be executed synchronously or
asynchronously. With this change, the variable ata_port_resume_ehi is
not longer necessary and its value (ATA_EHI_XXX flags) passed directly
to ata_port_request_pm().

Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Tested-by: Chia-Lin Kao (AceLan) <acelan.kao@canonical.com>
Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/ata/libata-core.c

index d72a2a2a61fd004942dfa7d8eaf36e3d88f75c23..c249016a59985bff267f831a0ab327068b8f4601 100644 (file)
@@ -5219,22 +5219,17 @@ static int ata_port_pm_poweroff(struct device *dev)
        return 0;
 }
 
-static const unsigned int ata_port_resume_ehi = ATA_EHI_NO_AUTOPSY
-                                               | ATA_EHI_QUIET;
-
-static void ata_port_resume(struct ata_port *ap, pm_message_t mesg)
+static void ata_port_resume(struct ata_port *ap, pm_message_t mesg,
+                           bool async)
 {
-       ata_port_request_pm(ap, mesg, ATA_EH_RESET, ata_port_resume_ehi, false);
-}
-
-static void ata_port_resume_async(struct ata_port *ap, pm_message_t mesg)
-{
-       ata_port_request_pm(ap, mesg, ATA_EH_RESET, ata_port_resume_ehi, true);
+       ata_port_request_pm(ap, mesg, ATA_EH_RESET,
+                           ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET,
+                           async);
 }
 
 static int ata_port_pm_resume(struct device *dev)
 {
-       ata_port_resume_async(to_ata_port(dev), PMSG_RESUME);
+       ata_port_resume(to_ata_port(dev), PMSG_RESUME, true);
        pm_runtime_disable(dev);
        pm_runtime_set_active(dev);
        pm_runtime_enable(dev);
@@ -5273,7 +5268,7 @@ static int ata_port_runtime_suspend(struct device *dev)
 
 static int ata_port_runtime_resume(struct device *dev)
 {
-       ata_port_resume(to_ata_port(dev), PMSG_AUTO_RESUME);
+       ata_port_resume(to_ata_port(dev), PMSG_AUTO_RESUME, false);
        return 0;
 }
 
@@ -5303,7 +5298,7 @@ EXPORT_SYMBOL_GPL(ata_sas_port_suspend);
 
 void ata_sas_port_resume(struct ata_port *ap)
 {
-       ata_port_resume_async(ap, PMSG_RESUME);
+       ata_port_resume(ap, PMSG_RESUME, true);
 }
 EXPORT_SYMBOL_GPL(ata_sas_port_resume);