Deleted Added
full compact
1/******************************************************************************
2 *
3 * Module Name: asllookup- Namespace lookup
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

--- 315 unchanged lines hidden (view full) ---

324
325 FlPrintFile (ASL_FILE_NAMESPACE_OUTPUT,
326 " [Desc Offset 0x%.4X Bytes]", Node->Value);
327 break;
328
329
330 case ACPI_TYPE_LOCAL_RESOURCE_FIELD:
331
332 if (Node->Flags & 0x80)
332 FlPrintFile (ASL_FILE_NAMESPACE_OUTPUT,
333 " [Field Offset 0x%.4X Bits 0x%.4X Bytes] ",
334 Node->Value, Node->Value / 8);
335
336 if (Node->Flags & ANOBJ_IS_REFERENCED)
337 {
338 FlPrintFile (ASL_FILE_NAMESPACE_OUTPUT,
335 " [Field Offset 0x%.4X Bits 0x%.4X Bytes]",
336 Node->Value, Node->Value / 8);
339 "Referenced");
340 }
341 else
342 {
343 FlPrintFile (ASL_FILE_NAMESPACE_OUTPUT,
341 " [Field Offset 0x%.4X Bytes]", Node->Value);
344 "Name not referenced");
345 }
346 break;
347
348
349 default:
350 /* Nothing to do for other types */
351 break;
352 }

--- 1050 unchanged lines hidden ---