2024-04-26 09:50:16

by Chen Yu

[permalink] [raw]
Subject: [PATCH] ACPI: tools: pfrut: Print the update_cap field during capability query

There is request from the end user to print this field to better
query what type of update capability is supported on this platform.

Signed-off-by: Chen Yu <[email protected]>
---
tools/power/acpi/tools/pfrut/pfrut.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/tools/power/acpi/tools/pfrut/pfrut.c b/tools/power/acpi/tools/pfrut/pfrut.c
index 388c9e3ad040..44a9ecbd91e8 100644
--- a/tools/power/acpi/tools/pfrut/pfrut.c
+++ b/tools/power/acpi/tools/pfrut/pfrut.c
@@ -174,6 +174,8 @@ void print_cap(struct pfru_update_cap_info *cap)
exit(1);
}

+ printf("update capability:%d\n", cap->update_cap);
+
uuid_unparse(cap->code_type, uuid);
printf("code injection image type:%s\n", uuid);
printf("fw_version:%d\n", cap->fw_version);
--
2.25.1



2024-04-26 17:33:00

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH] ACPI: tools: pfrut: Print the update_cap field during capability query

On Fri, Apr 26, 2024 at 11:50 AM Chen Yu <[email protected]> wrote:
>
> There is request from the end user to print this field to better
> query what type of update capability is supported on this platform.
>
> Signed-off-by: Chen Yu <[email protected]>
> ---
> tools/power/acpi/tools/pfrut/pfrut.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/tools/power/acpi/tools/pfrut/pfrut.c b/tools/power/acpi/tools/pfrut/pfrut.c
> index 388c9e3ad040..44a9ecbd91e8 100644
> --- a/tools/power/acpi/tools/pfrut/pfrut.c
> +++ b/tools/power/acpi/tools/pfrut/pfrut.c
> @@ -174,6 +174,8 @@ void print_cap(struct pfru_update_cap_info *cap)
> exit(1);
> }
>
> + printf("update capability:%d\n", cap->update_cap);
> +
> uuid_unparse(cap->code_type, uuid);
> printf("code injection image type:%s\n", uuid);
> printf("fw_version:%d\n", cap->fw_version);
> --

Applied as 6.10 material, thanks!