[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAJZ5v0jjwez87RBTYx8eKs1AYNWbv4U41=YbKC6scHkY3-920A@mail.gmail.com>
Date: Tue, 3 Oct 2023 21:06:49 +0200
From: "Rafael J. Wysocki" <rafael@...nel.org>
To: Jonathan Bergh <bergh.jonathan@...il.com>
Cc: lenb@...nel.org, rafael@...nel.org, linux-acpi@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2] drivers: acpi: Fix label indentation and leading
comma formatting issues
On Thu, Sep 28, 2023 at 11:48 PM Jonathan Bergh
<bergh.jonathan@...il.com> wrote:
>
> Fixed the following formatting issues flagged by checkpatch
> in utils.c:
> * Remove incorrect indentation before goto label
> * Remove whitespace ahead of comma in parameter list
>
> Signed-off-by: Jonathan Bergh <bergh.jonathan@...il.com>
> ---
> 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 2ea14648a661..300646bf8ba7 100644
> --- a/drivers/acpi/utils.c
> +++ b/drivers/acpi/utils.c
> @@ -399,7 +399,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);
> @@ -523,7 +523,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);
> --
Applied as 6.7 material along with the [2/2] with edis in subjects and
changelogs.
Thanks!
Powered by blists - more mailing lists