tbdata.c (2e578044134b742546a8cf7d49597f34528bdbec) | tbdata.c (37d7a5bcc0d1b717c16ee4eb4c6068501bf813fb) |
---|---|
1/****************************************************************************** 2 * 3 * Module Name: tbdata - Table manager data structure functions 4 * 5 *****************************************************************************/ 6 7/****************************************************************************** 8 * --- 1177 unchanged lines hidden (view full) --- 1186 if (ACPI_FAILURE (Status)) 1187 { 1188 return_ACPI_STATUS (Status); 1189 } 1190 1191 Status = AcpiNsLoadTable (TableIndex, ParentNode); 1192 1193 /* | 1/****************************************************************************** 2 * 3 * Module Name: tbdata - Table manager data structure functions 4 * 5 *****************************************************************************/ 6 7/****************************************************************************** 8 * --- 1177 unchanged lines hidden (view full) --- 1186 if (ACPI_FAILURE (Status)) 1187 { 1188 return_ACPI_STATUS (Status); 1189 } 1190 1191 Status = AcpiNsLoadTable (TableIndex, ParentNode); 1192 1193 /* |
1194 * This case handles the legacy option that groups all module-level 1195 * code blocks together and defers execution until all of the tables 1196 * are loaded. Execute all of these blocks at this time. 1197 * Execute any module-level code that was detected during the table 1198 * load phase. 1199 * 1200 * Note: this option is deprecated and will be eliminated in the 1201 * future. Use of this option can cause problems with AML code that 1202 * depends upon in-order immediate execution of module-level code. 1203 */ 1204 AcpiNsExecModuleCodeList (); 1205 1206 /* | |
1207 * Update GPEs for any new _Lxx/_Exx methods. Ignore errors. The host is 1208 * responsible for discovering any new wake GPEs by running _PRW methods 1209 * that may have been loaded by this table. 1210 */ 1211 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId); 1212 if (ACPI_SUCCESS (Status)) 1213 { 1214 AcpiEvUpdateGpes (OwnerId); --- 133 unchanged lines hidden --- | 1194 * Update GPEs for any new _Lxx/_Exx methods. Ignore errors. The host is 1195 * responsible for discovering any new wake GPEs by running _PRW methods 1196 * that may have been loaded by this table. 1197 */ 1198 Status = AcpiTbGetOwnerId (TableIndex, &OwnerId); 1199 if (ACPI_SUCCESS (Status)) 1200 { 1201 AcpiEvUpdateGpes (OwnerId); --- 133 unchanged lines hidden --- |