Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
|
|
/******************************************************************************
|
|
*
|
|
* Name: acenvex.h - Extra host and compiler configuration
|
|
*
|
|
* Copyright (C) 2000 - 2025, Intel Corp.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef __ACENVEX_H__
|
|
#define __ACENVEX_H__
|
|
|
|
/*! [Begin] no source code translation */
|
|
|
|
/******************************************************************************
|
|
*
|
|
* Extra host configuration files. All ACPICA headers are included before
|
|
* including these files.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#if defined(_LINUX) || defined(__linux__)
|
|
#include <acpi/platform/aclinuxex.h>
|
|
|
|
#elif defined(__DragonFly__)
|
|
#include "acdragonflyex.h"
|
|
|
|
/*
|
|
* EFI applications can be built with -nostdlib, in this case, it must be
|
|
* included after including all other host environmental definitions, in
|
|
* order to override the definitions.
|
|
*/
|
|
#elif defined(_AED_EFI) || defined(_GNU_EFI) || defined(_EDK2_EFI)
|
|
#include "acefiex.h"
|
|
|
|
#endif
|
|
|
|
#if defined(__GNUC__)
|
|
#include "acgccex.h"
|
|
|
|
#elif defined(_MSC_VER)
|
|
#include "acmsvcex.h"
|
|
|
|
#endif
|
|
|
|
/*! [End] no source code translation !*/
|
|
|
|
#endif /* __ACENVEX_H__ */
|