From 6c766f7aacc0fa5b461ca3d8067c9065a6a53ef4 Mon Sep 17 00:00:00 2001 From: Jonathan Bergh Date: Thu, 28 Sep 2023 23:48:07 +0200 Subject: [PATCH] ACPI: utils: Fix up white space in a few places Fix up the following formatting issues flagged by checkpatch: * Remove indentation before goto label * Remove whitespace ahead of a comma in parameter list Signed-off-by: Jonathan Bergh [ rjw: Subject and changelog edits ] Signed-off-by: Rafael J. Wysocki --- drivers/acpi/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/acpi/utils.c b/drivers/acpi/utils.c index c6f83c21bb2a3..0fcb3cf89ad22 100644 --- a/drivers/acpi/utils.c +++ b/drivers/acpi/utils.c @@ -400,7 +400,7 @@ acpi_evaluate_reference(acpi_handle handle, acpi_handle_debug(list->handles[i], "Found in reference list\n"); } - end: +end: if (ACPI_FAILURE(status)) { list->count = 0; kfree(list->handles); @@ -580,7 +580,7 @@ acpi_handle_printk(const char *level, acpi_handle handle, const char *fmt, ...) vaf.va = &args; path = acpi_handle_path(handle); - printk("%sACPI: %s: %pV", level, path ? path : "" , &vaf); + printk("%sACPI: %s: %pV", level, path ? path : "", &vaf); va_end(args); kfree(path); -- 2.30.2