aslmapoutput.c (0d84335f991f528c6f038e79dd5cc0a7770532da) aslmapoutput.c (5f9b24fa4327c851ddb733b73904401afe3f0123)
1/******************************************************************************
2 *
3 * Module Name: aslmapoutput - Output/emit the resource descriptor/device maps
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

680
681 /*
682 * If this node is the actual declaration of a name
683 * [such as the XXXX name in "Method (XXXX)"],
684 * we are not interested in it here. We only care about names that
685 * are references to other objects within the namespace and the
686 * parent objects of name declarations
687 */
1/******************************************************************************
2 *
3 * Module Name: aslmapoutput - Output/emit the resource descriptor/device maps
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

680
681 /*
682 * If this node is the actual declaration of a name
683 * [such as the XXXX name in "Method (XXXX)"],
684 * we are not interested in it here. We only care about names that
685 * are references to other objects within the namespace and the
686 * parent objects of name declarations
687 */
688 if (Op->Asl.CompileFlags & NODE_IS_NAME_DECLARATION)
688 if (Op->Asl.CompileFlags & OP_IS_NAME_DECLARATION)
689 {
690 return (AE_OK);
691 }
692
693 /* We are only interested in opcodes that have an associated name */
694
695 OpInfo = AcpiPsGetOpcodeInfo (Op->Asl.AmlOpcode);
696

--- 54 unchanged lines hidden ---
689 {
690 return (AE_OK);
691 }
692
693 /* We are only interested in opcodes that have an associated name */
694
695 OpInfo = AcpiPsGetOpcodeInfo (Op->Asl.AmlOpcode);
696

--- 54 unchanged lines hidden ---