ACPI: OSL: Add empty lines after local variable declarations
authorJonathan Bergh <bergh.jonathan@gmail.com>
Sat, 30 Sep 2023 09:04:36 +0000 (11:04 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 3 Oct 2023 18:26:21 +0000 (20:26 +0200)
Fix up four places where there is no empty line after declarations of
local variables in a function (as per the kernel coding style).

Signed-off-by: Jonathan Bergh <bergh.jonathan@gmail.com>
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/osl.c

index 838677010cebdd11a2cda1044c0eba8c57e8d2e0..e154ad0be263cb2fa6f7de6be3eb2276d3c3199c 100644 (file)
@@ -1067,6 +1067,7 @@ acpi_status acpi_os_execute(acpi_execute_type type,
        struct acpi_os_dpc *dpc;
        struct workqueue_struct *queue;
        int ret;
+
        ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
                          "Scheduling function [%p(%p)] for deferred execution.\n",
                          function, context));
@@ -1522,6 +1523,7 @@ acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
        __acquires(lockp)
 {
        acpi_cpu_flags flags;
+
        spin_lock_irqsave(lockp, flags);
        return flags;
 }
@@ -1708,6 +1710,7 @@ acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
                                  u32 pm1b_control)
 {
        int rc = 0;
+
        if (__acpi_os_prepare_sleep)
                rc = __acpi_os_prepare_sleep(sleep_state,
                                             pm1a_control, pm1b_control);
@@ -1730,6 +1733,7 @@ acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
                                  u32 val_b)
 {
        int rc = 0;
+
        if (__acpi_os_prepare_extended_sleep)
                rc = __acpi_os_prepare_extended_sleep(sleep_state,
                                             val_a, val_b);