ACPI: utils: Fix up white space in a few places
authorJonathan Bergh <bergh.jonathan@gmail.com>
Thu, 28 Sep 2023 21:48:07 +0000 (23:48 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 3 Oct 2023 19:04:49 +0000 (21:04 +0200)
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 <bergh.jonathan@gmail.com>
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/utils.c

index c6f83c21bb2a31928ae76f5dbb0f698e7bb16b1b..0fcb3cf89ad2270cc88666ce1ecc1adc7d7da49a 100644 (file)
@@ -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 : "<n/a>" , &vaf);
+       printk("%sACPI: %s: %pV", level, path ? path : "<n/a>", &vaf);
 
        va_end(args);
        kfree(path);