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

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

139 /* There are some types that are typically not referenced, ignore them */
140
141 switch (Node->Type)
142 {
143 case ACPI_TYPE_DEVICE:
144 case ACPI_TYPE_PROCESSOR:
145 case ACPI_TYPE_POWER:
146 case ACPI_TYPE_LOCAL_RESOURCE:
1/******************************************************************************
2 *
3 * Module Name: asllookup- Namespace lookup functions
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2013, Intel Corp.

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

139 /* There are some types that are typically not referenced, ignore them */
140
141 switch (Node->Type)
142 {
143 case ACPI_TYPE_DEVICE:
144 case ACPI_TYPE_PROCESSOR:
145 case ACPI_TYPE_POWER:
146 case ACPI_TYPE_LOCAL_RESOURCE:
147
147 return (AE_OK);
148
149 default:
148 return (AE_OK);
149
150 default:
151
150 break;
151 }
152
153 /* All others are valid unreferenced namespace objects */
154
155 if (Node->Op)
156 {
157 AslError (ASL_WARNING2, ASL_MSG_NOT_REFERENCED, LkGetNameOp (Node->Op), NULL);

--- 57 unchanged lines hidden ---
152 break;
153 }
154
155 /* All others are valid unreferenced namespace objects */
156
157 if (Node->Op)
158 {
159 AslError (ASL_WARNING2, ASL_MSG_NOT_REFERENCED, LkGetNameOp (Node->Op), NULL);

--- 57 unchanged lines hidden ---