summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2022-05-21 12:17:14 +0200
committerThomas Weißschuh <thomas@t-8ch.de>2022-05-21 12:17:14 +0200
commit6b7a78c41c04772a30923c8c0ba71770d55ac815 (patch)
tree1ec4a41a74fd1a077d8955495484ab0d15ba3d99
parent0f814783ef9ed3a50e15cab08579218ec45b4640 (diff)
downloadacpica-6b7a78c41c04772a30923c8c0ba71770d55ac815.tar.gz
Linux non-kernel: Use use uintptr_t for ACPI_UINTPTR_T
-rw-r--r--source/include/platform/aclinux.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/include/platform/aclinux.h b/source/include/platform/aclinux.h
index 1c55c659f..a4f7d27bf 100644
--- a/source/include/platform/aclinux.h
+++ b/source/include/platform/aclinux.h
@@ -168,6 +168,8 @@
#define ACPI_USE_DO_WHILE_0
#define ACPI_IGNORE_PACKAGE_RESOLUTION_ERRORS
+#define ACPI_UINTPTR_T uintptr_t
+
#ifdef __KERNEL__
@@ -252,8 +254,6 @@
#define ACPI_SPINLOCK spinlock_t *
#define ACPI_CPU_FLAGS unsigned long
-#define ACPI_UINTPTR_T uintptr_t
-
#define ACPI_TO_INTEGER(p) ((uintptr_t)(p))
#define ACPI_OFFSET(d, f) offsetof(d, f)
@@ -311,6 +311,7 @@
#ifdef ACPI_USE_STANDARD_HEADERS
#include <unistd.h>
+#include <stdint.h>
#endif
/* Define/disable kernel-specific declarators */