diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-01-19 19:46:15 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-01-19 19:46:15 +0000 |
commit | a0b3a9cf1fc8fe1d9f95e69cdf8914bb6ebcee03 (patch) | |
tree | 9a4c1adfb3b461e73df26093e34a24a1836bae3b /source/include/platform/aclinux.h | |
parent | f2e6c39316f68b7ccc7abb766f82ed421c8e22b4 (diff) |
Notes
Diffstat (limited to 'source/include/platform/aclinux.h')
-rw-r--r-- | source/include/platform/aclinux.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source/include/platform/aclinux.h b/source/include/platform/aclinux.h index c19a8e45f848..5bfa34d7a3b5 100644 --- a/source/include/platform/aclinux.h +++ b/source/include/platform/aclinux.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2016, Intel Corp. + * Copyright (C) 2000 - 2017, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -74,6 +74,10 @@ #define ACPI_DEBUGGER #endif +#ifdef CONFIG_ACPI_DEBUG +#define ACPI_MUTEX_DEBUG +#endif + #include <linux/string.h> #include <linux/kernel.h> #include <linux/ctype.h> @@ -188,6 +192,9 @@ #ifndef __init #define __init #endif +#ifndef __iomem +#define __iomem +#endif /* Host-dependent types and defines for user-space ACPICA */ |