Deleted Added
full compact
dsargs.c (228110) dsargs.c (229989)
1/******************************************************************************
2 *
3 * Module Name: dsargs - Support for execution of dynamic arguments for static
4 * objects (regions, fields, buffer fields, etc.)
5 *
6 *****************************************************************************/
7
8/*
1/******************************************************************************
2 *
3 * Module Name: dsargs - Support for execution of dynamic arguments for static
4 * objects (regions, fields, buffer fields, etc.)
5 *
6 *****************************************************************************/
7
8/*
9 * Copyright (C) 2000 - 2011, Intel Corp.
9 * Copyright (C) 2000 - 2012, Intel Corp.
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.

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

421
422 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "[%4.4s] OpRegion Arg Init at AML %p\n",
423 AcpiUtGetNodeName (Node), ExtraDesc->Extra.AmlStart));
424
425 /* Execute the argument AML */
426
427 Status = AcpiDsExecuteArguments (Node, ExtraDesc->Extra.ScopeNode,
428 ExtraDesc->Extra.AmlLength, ExtraDesc->Extra.AmlStart);
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.

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

421
422 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "[%4.4s] OpRegion Arg Init at AML %p\n",
423 AcpiUtGetNodeName (Node), ExtraDesc->Extra.AmlStart));
424
425 /* Execute the argument AML */
426
427 Status = AcpiDsExecuteArguments (Node, ExtraDesc->Extra.ScopeNode,
428 ExtraDesc->Extra.AmlLength, ExtraDesc->Extra.AmlStart);
429 if (ACPI_FAILURE (Status))
430 {
431 return_ACPI_STATUS (Status);
432 }
433
434 Status = AcpiUtAddAddressRange (ObjDesc->Region.SpaceId,
435 ObjDesc->Region.Address, ObjDesc->Region.Length,
436 Node);
429 return_ACPI_STATUS (Status);
430}
437 return_ACPI_STATUS (Status);
438}