diff options
Diffstat (limited to 'source/compiler/asllookup.c')
-rw-r--r-- | source/compiler/asllookup.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/source/compiler/asllookup.c b/source/compiler/asllookup.c index 8bd93559bc51..f051879b3bfa 100644 --- a/source/compiler/asllookup.c +++ b/source/compiler/asllookup.c @@ -329,16 +329,19 @@ LsDoOneNamespaceObject ( case ACPI_TYPE_LOCAL_RESOURCE_FIELD: - if (Node->Flags & 0x80) + FlPrintFile (ASL_FILE_NAMESPACE_OUTPUT, + " [Field Offset 0x%.4X Bits 0x%.4X Bytes] ", + Node->Value, Node->Value / 8); + + if (Node->Flags & ANOBJ_IS_REFERENCED) { FlPrintFile (ASL_FILE_NAMESPACE_OUTPUT, - " [Field Offset 0x%.4X Bits 0x%.4X Bytes]", - Node->Value, Node->Value / 8); + "Referenced"); } else { FlPrintFile (ASL_FILE_NAMESPACE_OUTPUT, - " [Field Offset 0x%.4X Bytes]", Node->Value); + "Name not referenced"); } break; |