Re: [GIT PULL] ACPI fixes for v5.15-rc7

From: Linus Torvalds
Date: Fri Oct 22 2021 - 15:13:21 EST


On Fri, Oct 22, 2021 at 9:01 AM Rafael J. Wysocki <rafael@xxxxxxxxxx> wrote:
>
> - Fix an ACPI tools build issue introduced recently when the minimal
> stdarg.h was added (Miguel Bernal Marin).

Hmm. ACPI already has that odd ACPI_USE_BUILTIN_STDARG case in
acgcc.h, which ends up using _exactly_ the same macros as the
<linux/stdarg.h> implementation does, and is basically exactly the
same "minimal stdarg".

Ok, so the macro argument names are different, and there are
whitespace differences, but semantically identical.

So maybe the ACPI code could drop one or the other in favor of the
identical macros?

Linus