Re: [PATCH 3/3] cmd: acpi: check HW reduced flag in acpi list

2023-12-15 Thread Heinrich Schuchardt
On 12/15/23 18:46, Andy Shevchenko wrote: On Fri, Dec 15, 2023 at 05:40:16PM +0100, Heinrich Schuchardt wrote: On non x86 platforms the hardware reduce flag must be set in the FADT table. Write an error message if the flag is missing. ... + if (!IS_ENABLED(CONFIG_X86) && +

Re: [PATCH 3/3] cmd: acpi: check HW reduced flag in acpi list

2023-12-15 Thread Andy Shevchenko
On Fri, Dec 15, 2023 at 05:40:16PM +0100, Heinrich Schuchardt wrote: > On non x86 platforms the hardware reduce flag must be set in the FADT > table. Write an error message if the flag is missing. ... > + if (!IS_ENABLED(CONFIG_X86) && > + !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI))

[PATCH 3/3] cmd: acpi: check HW reduced flag in acpi list

2023-12-15 Thread Heinrich Schuchardt
On non x86 platforms the hardware reduce flag must be set in the FADT table. Write an error message if the flag is missing. Signed-off-by: Heinrich Schuchardt --- cmd/acpi.c | 4 1 file changed, 4 insertions(+) diff --git a/cmd/acpi.c b/cmd/acpi.c index 24910c150b..2e9a333ffa 100644 ---