Skip to content

Commit a1da3b7

Browse files
icojb25rafaeljw
authored andcommitted
ACPI: OSL: Add empty lines after local variable declarations
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 <[email protected]> [ rjw: Subject and changelog edits ] Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 9d4e27d commit a1da3b7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/acpi/osl.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,6 +1067,7 @@ acpi_status acpi_os_execute(acpi_execute_type type,
10671067
struct acpi_os_dpc *dpc;
10681068
struct workqueue_struct *queue;
10691069
int ret;
1070+
10701071
ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
10711072
"Scheduling function [%p(%p)] for deferred execution.\n",
10721073
function, context));
@@ -1522,6 +1523,7 @@ acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
15221523
__acquires(lockp)
15231524
{
15241525
acpi_cpu_flags flags;
1526+
15251527
spin_lock_irqsave(lockp, flags);
15261528
return flags;
15271529
}
@@ -1708,6 +1710,7 @@ acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
17081710
u32 pm1b_control)
17091711
{
17101712
int rc = 0;
1713+
17111714
if (__acpi_os_prepare_sleep)
17121715
rc = __acpi_os_prepare_sleep(sleep_state,
17131716
pm1a_control, pm1b_control);
@@ -1730,6 +1733,7 @@ acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
17301733
u32 val_b)
17311734
{
17321735
int rc = 0;
1736+
17331737
if (__acpi_os_prepare_extended_sleep)
17341738
rc = __acpi_os_prepare_extended_sleep(sleep_state,
17351739
val_a, val_b);

0 commit comments

Comments
 (0)