diff options
Diffstat (limited to 'source/components/executer')
-rw-r--r-- | source/components/executer/exprep.c | 4 | ||||
-rw-r--r-- | source/components/executer/exresolv.c | 2 | ||||
-rw-r--r-- | source/components/executer/exstore.c | 6 | ||||
-rw-r--r-- | source/components/executer/exutils.c | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/source/components/executer/exprep.c b/source/components/executer/exprep.c index 9ec7827..6b8f691 100644 --- a/source/components/executer/exprep.c +++ b/source/components/executer/exprep.c @@ -418,8 +418,8 @@ AcpiExPrepCommonFieldObject ( * * RETURN: Status * - * DESCRIPTION: Construct an ACPI_OPERAND_OBJECT of type DefField and - * connect it to the parent Node. + * DESCRIPTION: Construct an object of type ACPI_OPERAND_OBJECT with a + * subtype of DefField and connect it to the parent Node. * ******************************************************************************/ diff --git a/source/components/executer/exresolv.c b/source/components/executer/exresolv.c index e92fb24..72286b0 100644 --- a/source/components/executer/exresolv.c +++ b/source/components/executer/exresolv.c @@ -165,7 +165,7 @@ AcpiExResolveObjectToValue ( StackDesc = *StackPtr; - /* This is an ACPI_OPERAND_OBJECT */ + /* This is an object of type ACPI_OPERAND_OBJECT */ switch (StackDesc->Common.Type) { diff --git a/source/components/executer/exstore.c b/source/components/executer/exstore.c index 656b649..3a88811 100644 --- a/source/components/executer/exstore.c +++ b/source/components/executer/exstore.c @@ -68,15 +68,15 @@ AcpiExStoreObjectToIndex ( * FUNCTION: AcpiExStore * * PARAMETERS: *SourceDesc - Value to be stored - * *DestDesc - Where to store it. Must be an NS node - * or an ACPI_OPERAND_OBJECT of type + * *DestDesc - Where to store it. Must be an NS node + * or ACPI_OPERAND_OBJECT of type * Reference; * WalkState - Current walk state * * RETURN: Status * * DESCRIPTION: Store the value described by SourceDesc into the location - * described by DestDesc. Called by various interpreter + * described by DestDesc. Called by various interpreter * functions to store the result of an operation into * the destination operand -- not just simply the actual "Store" * ASL operator. diff --git a/source/components/executer/exutils.c b/source/components/executer/exutils.c index b5eca06..faf34fc 100644 --- a/source/components/executer/exutils.c +++ b/source/components/executer/exutils.c @@ -121,7 +121,7 @@ AcpiExEnterInterpreter ( * * DESCRIPTION: Reacquire the interpreter execution region from within the * interpreter code. Failure to enter the interpreter region is a - * fatal system error. Used in conjuction with + * fatal system error. Used in conjunction with * RelinquishInterpreter * ******************************************************************************/ |