]> Git Repo - linux.git/commitdiff
ACPI: PM: add a missed blank line after declarations
authorXiaofei Tan <[email protected]>
Sat, 27 Mar 2021 12:08:22 +0000 (20:08 +0800)
committerRafael J. Wysocki <[email protected]>
Thu, 8 Apr 2021 14:27:02 +0000 (16:27 +0200)
Add a missed blank line after declarations, reported by checkpatch.pl.

Signed-off-by: Xiaofei Tan <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
drivers/acpi/device_pm.c

index 096153761ebc35d01c565a4b7aa71d909a274612..16c0fe8a72a7ffa788d733d969141634d8102c3b 100644 (file)
@@ -966,6 +966,7 @@ EXPORT_SYMBOL_GPL(acpi_dev_resume);
 int acpi_subsys_runtime_suspend(struct device *dev)
 {
        int ret = pm_generic_runtime_suspend(dev);
+
        return ret ? ret : acpi_dev_suspend(dev, true);
 }
 EXPORT_SYMBOL_GPL(acpi_subsys_runtime_suspend);
@@ -980,6 +981,7 @@ EXPORT_SYMBOL_GPL(acpi_subsys_runtime_suspend);
 int acpi_subsys_runtime_resume(struct device *dev)
 {
        int ret = acpi_dev_resume(dev);
+
        return ret ? ret : pm_generic_runtime_resume(dev);
 }
 EXPORT_SYMBOL_GPL(acpi_subsys_runtime_resume);
@@ -1171,6 +1173,7 @@ EXPORT_SYMBOL_GPL(acpi_subsys_freeze);
 int acpi_subsys_restore_early(struct device *dev)
 {
        int ret = acpi_dev_resume(dev);
+
        return ret ? ret : pm_generic_restore_early(dev);
 }
 EXPORT_SYMBOL_GPL(acpi_subsys_restore_early);
This page took 0.059084 seconds and 4 git commands to generate.