]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
ACPI: Drop ACPI_USE_BUILTIN_STDARG ifdef from acgcc.h
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 3 Nov 2021 18:46:43 +0000 (19:46 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 5 Nov 2021 14:51:13 +0000 (15:51 +0100)
The ACPI_USE_BUILTIN_STDARG symbol is never set in the kernel build,
so stop checking it in include/acpi/platform/acgcc.h and drop all of
the macros depending on it (which appear to duplicate the analogous
macros from linux/stdarg.h, but in fact are never used).

Link: https://lore.kernel.org/linux-acpi/CAHk-=whCammRsz8PEbrft3M6vGjF506gkxtyGw81uGOUUvD51g@mail.gmail.com/
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Linus Torvalds <torvalds@linuxfoundation.org>
include/acpi/platform/acgcc.h

index 20ecb004f5a4ac7eea702fdb6591e8081b523100..33ad282bd3389e446ceae951b5cd4a36d30540d9 100644 (file)
 #ifndef __ACGCC_H__
 #define __ACGCC_H__
 
-/*
- * Use compiler specific <stdarg.h> is a good practice for even when
- * -nostdinc is specified (i.e., ACPI_USE_STANDARD_HEADERS undefined.
- */
 #ifndef va_arg
-#ifdef ACPI_USE_BUILTIN_STDARG
-typedef __builtin_va_list va_list;
-#define va_start(v, l)          __builtin_va_start(v, l)
-#define va_end(v)               __builtin_va_end(v)
-#define va_arg(v, l)            __builtin_va_arg(v, l)
-#define va_copy(d, s)           __builtin_va_copy(d, s)
-#else
 #ifdef __KERNEL__
 #include <linux/stdarg.h>
 #else
-/* Used to build acpi tools */
 #include <stdarg.h>
 #endif /* __KERNEL__ */
-#endif /* ACPI_USE_BUILTIN_STDARG */
 #endif /* ! va_arg */
 
 #define ACPI_INLINE             __inline__