Deleted Added
full compact
psxface.c (202771) psxface.c (206117)
1/******************************************************************************
2 *
3 * Module Name: psxface - Parser external interfaces
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

115
116#define __PSXFACE_C__
117
118#include <contrib/dev/acpica/include/acpi.h>
119#include <contrib/dev/acpica/include/accommon.h>
120#include <contrib/dev/acpica/include/acparser.h>
121#include <contrib/dev/acpica/include/acdispat.h>
122#include <contrib/dev/acpica/include/acinterp.h>
1/******************************************************************************
2 *
3 * Module Name: psxface - Parser external interfaces
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

115
116#define __PSXFACE_C__
117
118#include <contrib/dev/acpica/include/acpi.h>
119#include <contrib/dev/acpica/include/accommon.h>
120#include <contrib/dev/acpica/include/acparser.h>
121#include <contrib/dev/acpica/include/acdispat.h>
122#include <contrib/dev/acpica/include/acinterp.h>
123#include <contrib/dev/acpica/include/actables.h>
123#include <contrib/dev/acpica/include/amlcode.h>
124
125
126#define _COMPONENT ACPI_PARSER
127 ACPI_MODULE_NAME ("psxface")
128
129/* Local Prototypes */
130

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

329 ACPI_STATUS Status;
330 ACPI_PARSE_OBJECT *Op;
331 ACPI_WALK_STATE *WalkState;
332
333
334 ACPI_FUNCTION_TRACE (PsExecuteMethod);
335
336
124#include <contrib/dev/acpica/include/amlcode.h>
125
126
127#define _COMPONENT ACPI_PARSER
128 ACPI_MODULE_NAME ("psxface")
129
130/* Local Prototypes */
131

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

330 ACPI_STATUS Status;
331 ACPI_PARSE_OBJECT *Op;
332 ACPI_WALK_STATE *WalkState;
333
334
335 ACPI_FUNCTION_TRACE (PsExecuteMethod);
336
337
338 /* Quick validation of DSDT header */
339
340 AcpiTbCheckDsdtHeader ();
341
337 /* Validate the Info and method Node */
338
339 if (!Info || !Info->ResolvedNode)
340 {
341 return_ACPI_STATUS (AE_NULL_ENTRY);
342 }
343
344 /* Init for new method, wait on concurrency semaphore */

--- 166 unchanged lines hidden ---
342 /* Validate the Info and method Node */
343
344 if (!Info || !Info->ResolvedNode)
345 {
346 return_ACPI_STATUS (AE_NULL_ENTRY);
347 }
348
349 /* Init for new method, wait on concurrency semaphore */

--- 166 unchanged lines hidden ---