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>
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
|
|
/******************************************************************************
|
|
*
|
|
* Name: accommon.h - Common include files for generation of ACPICA source
|
|
*
|
|
* Copyright (C) 2000 - 2025, Intel Corp.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef __ACCOMMON_H__
|
|
#define __ACCOMMON_H__
|
|
|
|
/*
|
|
* Common set of includes for all ACPICA source files.
|
|
* We put them here because we don't want to duplicate them
|
|
* in the source code again and again.
|
|
*
|
|
* Note: The order of these include files is important.
|
|
*/
|
|
#include <acpi/acconfig.h> /* Global configuration constants */
|
|
#include "acmacros.h" /* C macros */
|
|
#include "aclocal.h" /* Internal data types */
|
|
#include "acobject.h" /* ACPI internal object */
|
|
#include "acstruct.h" /* Common structures */
|
|
#include "acglobal.h" /* All global variables */
|
|
#include "achware.h" /* Hardware defines and interfaces */
|
|
#include "acutils.h" /* Utility interfaces */
|
|
#ifndef ACPI_USE_SYSTEM_CLIBRARY
|
|
#include "acclib.h" /* C library interfaces */
|
|
#endif /* !ACPI_USE_SYSTEM_CLIBRARY */
|
|
|
|
#endif /* __ACCOMMON_H__ */
|