summaryrefslogtreecommitdiff
path: root/libacpica/acpi/platform/acintel.h
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2021-03-30 16:32:49 +1100
committerDamien Zammit <damien@zamaudio.com>2021-03-30 17:05:53 +1100
commit8c64499adadf88715883150ce89bfb5e945d7319 (patch)
tree5792803a39e8a303e6295e83cda60cb4d21be6fc /libacpica/acpi/platform/acintel.h
parent65a80c709b4a8c909fa1d7de49e0097611bdc057 (diff)
acpica: Import codebase from upstream ACPICA
Imported from https://github.com/acpica/acpica on commit 63db9761a6fac0c501eb1767c16b20cf74278e77 filtered using ./generate/linux/gen-repo.sh
Diffstat (limited to 'libacpica/acpi/platform/acintel.h')
-rw-r--r--libacpica/acpi/platform/acintel.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/libacpica/acpi/platform/acintel.h b/libacpica/acpi/platform/acintel.h
new file mode 100644
index 00000000..550fe9a8
--- /dev/null
+++ b/libacpica/acpi/platform/acintel.h
@@ -0,0 +1,55 @@
+/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
+/******************************************************************************
+ *
+ * Name: acintel.h - VC specific defines, etc.
+ *
+ * Copyright (C) 2000 - 2021, Intel Corp.
+ *
+ *****************************************************************************/
+
+#ifndef __ACINTEL_H__
+#define __ACINTEL_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
+#include <stdarg.h>
+#endif
+
+/* Configuration specific to Intel 64-bit C compiler */
+
+#define COMPILER_DEPENDENT_INT64 __int64
+#define COMPILER_DEPENDENT_UINT64 unsigned __int64
+#define ACPI_INLINE __inline
+
+/*
+ * Calling conventions:
+ *
+ * ACPI_SYSTEM_XFACE - Interfaces to host OS (handlers, threads)
+ * ACPI_EXTERNAL_XFACE - External ACPI interfaces
+ * ACPI_INTERNAL_XFACE - Internal ACPI interfaces
+ * ACPI_INTERNAL_VAR_XFACE - Internal variable-parameter list interfaces
+ */
+#define ACPI_SYSTEM_XFACE
+#define ACPI_EXTERNAL_XFACE
+#define ACPI_INTERNAL_XFACE
+#define ACPI_INTERNAL_VAR_XFACE
+
+/* remark 981 - operands evaluated in no particular order */
+#pragma warning(disable:981)
+
+/* warn C4100: unreferenced formal parameter */
+#pragma warning(disable:4100)
+
+/* warn C4127: conditional expression is constant */
+#pragma warning(disable:4127)
+
+/* warn C4706: assignment within conditional expression */
+#pragma warning(disable:4706)
+
+/* warn C4214: bit field types other than int */
+#pragma warning(disable:4214)
+
+#endif /* __ACINTEL_H__ */