diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi/actypes.h | 8 | ||||
-rw-r--r-- | include/acpi/platform/acenv.h | 5 |
2 files changed, 11 insertions, 2 deletions
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index 0e32b6cab6e6..809b1a0fee7f 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
@@ -315,6 +315,14 @@ typedef u32 acpi_physical_address; | |||
315 | #define ACPI_EXPORT_SYMBOL(symbol) | 315 | #define ACPI_EXPORT_SYMBOL(symbol) |
316 | #endif | 316 | #endif |
317 | 317 | ||
318 | /* | ||
319 | * Compiler/Clibrary-dependent debug initialization. Used for ACPICA | ||
320 | * utilities only. | ||
321 | */ | ||
322 | #ifndef ACPI_DEBUG_INITIALIZE | ||
323 | #define ACPI_DEBUG_INITIALIZE() | ||
324 | #endif | ||
325 | |||
318 | /******************************************************************************* | 326 | /******************************************************************************* |
319 | * | 327 | * |
320 | * Configuration | 328 | * Configuration |
diff --git a/include/acpi/platform/acenv.h b/include/acpi/platform/acenv.h index 9b3966c35b33..974d3ef7c141 100644 --- a/include/acpi/platform/acenv.h +++ b/include/acpi/platform/acenv.h | |||
@@ -96,10 +96,11 @@ | |||
96 | #endif | 96 | #endif |
97 | 97 | ||
98 | /* | 98 | /* |
99 | * acpi_bin/acpi_help/acpi_src configuration. All single threaded, with | 99 | * acpi_bin/acpi_dump/acpi_src/acpi_xtract configuration. All single |
100 | * no debug output. | 100 | * threaded, with no debug output. |
101 | */ | 101 | */ |
102 | #if (defined ACPI_BIN_APP) || \ | 102 | #if (defined ACPI_BIN_APP) || \ |
103 | (defined ACPI_DUMP_APP) || \ | ||
103 | (defined ACPI_SRC_APP) || \ | 104 | (defined ACPI_SRC_APP) || \ |
104 | (defined ACPI_XTRACT_APP) | 105 | (defined ACPI_XTRACT_APP) |
105 | #define ACPI_APPLICATION | 106 | #define ACPI_APPLICATION |