[PATCH] ACPI: prune undue ia64 leftover

Jan Beulich posted 1 patch 2 days, 11 hours ago
[PATCH] ACPI: prune undue ia64 leftover
Posted by Jan Beulich 2 days, 11 hours ago
This undoes the part of 3b0246ea0347 ("Fix ia64 tools build") which was
missed by e567964a54b8 ("tools: drop ia64 support").

Signed-off-by: Jan Beulich <jbeulich@suse.com>
---
The other ia64 oddity (in acpi/actypes.h) was truly inherited from Linux.

Imo 37dbdb0a00d8 ("[SOLARIS] Fix Xen build. ACPI headers aren't
Linux-specific") really also wants undoing, but that would require other
acpi/platform/ac<OS>.h to be introduced. Or we could switch to having
acpi/platform/acxen.h in place of acpi/platform/aclinux.h.

--- a/xen/include/acpi/platform/acenv.h
+++ b/xen/include/acpi/platform/acenv.h
@@ -136,9 +136,7 @@
 
 /*! [Begin] no source code translation */
 
-#if defined(__XEN_TOOLS__) && defined(__ia64__)
-#include "ac_ia64_tools.h"
-#elif 1 /*defined(_LINUX) || defined(__linux__)*/
+#if 1 /*defined(_LINUX) || defined(__linux__)*/
 #include "aclinux.h"
 
 #elif defined(_AED_EFI)
Re: [PATCH] ACPI: prune undue ia64 leftover
Posted by Andrew Cooper 2 days, 9 hours ago
On 22/09/2026 8:10 am, Jan Beulich wrote:
> This undoes the part of 3b0246ea0347 ("Fix ia64 tools build") which was
> missed by e567964a54b8 ("tools: drop ia64 support").
>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>