summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2014-01-10 13:57:59 -0800
committerRobert Moore <Robert.Moore@intel.com>2014-01-10 13:57:59 -0800
commitacdbfab4b9e49efb73cf711a7461847edc349703 (patch)
treedb4680e32e319cfce68cc1f70d1e8f4d04b73c76 /source
parentf4247c8fe95553eb927fa1df7bc9c313bc82d4a9 (diff)
Update the conditions to enable the utility resource dump strings.
This patch updates the compilation condition used for the resource dump related string tables to match the compilation environment used for rsdump.c and rsdumpinfo.c. This patch can help to reduce the source code differences between Linux and ACPICA upstream. Lv Zheng.
Diffstat (limited to 'source')
-rw-r--r--source/components/utilities/utresrc.c2
-rw-r--r--source/include/acutils.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/components/utilities/utresrc.c b/source/components/utilities/utresrc.c
index 0d9e68c21..f5af86f97 100644
--- a/source/components/utilities/utresrc.c
+++ b/source/components/utilities/utresrc.c
@@ -125,7 +125,7 @@
ACPI_MODULE_NAME ("utresrc")
-#if defined(ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER)
+#if defined(ACPI_DEBUG_OUTPUT) || defined (ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER)
/*
* Strings used to decode resource descriptors.
diff --git a/source/include/acutils.h b/source/include/acutils.h
index 69f64cec8..f1c2c8bd3 100644
--- a/source/include/acutils.h
+++ b/source/include/acutils.h
@@ -122,7 +122,7 @@ extern const UINT8 AcpiGbl_ResourceAmlSerialBusSizes[];
/* Strings used by the disassembler and debugger resource dump routines */
-#if defined(ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER)
+#if defined(ACPI_DEBUG_OUTPUT) || defined (ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER)
extern const char *AcpiGbl_BmDecode[];
extern const char *AcpiGbl_ConfigDecode[];