From: Jonathan Bergh Date: Thu, 28 Sep 2023 21:48:07 +0000 (+0200) Subject: ACPI: utils: Fix up white space in a few places X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6c766f7aacc0fa5b461ca3d8067c9065a6a53ef4;p=linux.git 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 --- 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);