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>
        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));
        __acquires(lockp)
 {
        acpi_cpu_flags flags;
+
        spin_lock_irqsave(lockp, flags);
        return flags;
 }
                                  u32 pm1b_control)
 {
        int rc = 0;
+
        if (__acpi_os_prepare_sleep)
                rc = __acpi_os_prepare_sleep(sleep_state,
                                             pm1a_control, pm1b_control);
                                  u32 val_b)
 {
        int rc = 0;
+
        if (__acpi_os_prepare_extended_sleep)
                rc = __acpi_os_prepare_extended_sleep(sleep_state,
                                             val_a, val_b);