diff options
Diffstat (limited to 'source/components/dispatcher')
| -rw-r--r-- | source/components/dispatcher/dscontrol.c | 2 | ||||
| -rw-r--r-- | source/components/dispatcher/dsfield.c | 4 | ||||
| -rw-r--r-- | source/components/dispatcher/dsinit.c | 4 | ||||
| -rw-r--r-- | source/components/dispatcher/dsmethod.c | 8 | ||||
| -rw-r--r-- | source/components/dispatcher/dsmthdat.c | 16 | ||||
| -rw-r--r-- | source/components/dispatcher/dsobject.c | 8 | ||||
| -rw-r--r-- | source/components/dispatcher/dsopcode.c | 1 | ||||
| -rw-r--r-- | source/components/dispatcher/dsutils.c | 32 | ||||
| -rw-r--r-- | source/components/dispatcher/dswexec.c | 10 | ||||
| -rw-r--r-- | source/components/dispatcher/dswload2.c | 5 | ||||
| -rw-r--r-- | source/components/dispatcher/dswscope.c | 2 | ||||
| -rw-r--r-- | source/components/dispatcher/dswstate.c | 14 | 
12 files changed, 44 insertions, 62 deletions
| diff --git a/source/components/dispatcher/dscontrol.c b/source/components/dispatcher/dscontrol.c index 5c5c51a573e66..ec2fa437f1f75 100644 --- a/source/components/dispatcher/dscontrol.c +++ b/source/components/dispatcher/dscontrol.c @@ -290,7 +290,7 @@ AcpiDsExecEndControlOp (              /*               * Get the return value and save as the last result -             * value.  This is the only place where WalkState->ReturnDesc +             * value. This is the only place where WalkState->ReturnDesc               * is set to anything other than zero!               */              WalkState->ReturnDesc = WalkState->Operands[0]; diff --git a/source/components/dispatcher/dsfield.c b/source/components/dispatcher/dsfield.c index e3e05b925c2df..cf2abb51d052a 100644 --- a/source/components/dispatcher/dsfield.c +++ b/source/components/dispatcher/dsfield.c @@ -305,7 +305,7 @@ Cleanup:   *   * RETURN:      Status   * - * DESCRIPTION: Process all named fields in a field declaration.  Names are + * DESCRIPTION: Process all named fields in a field declaration. Names are   *              entered into the namespace.   *   ******************************************************************************/ @@ -828,5 +828,3 @@ AcpiDsCreateIndexField (      Status = AcpiDsGetFieldNames (&Info, WalkState, Arg->Common.Next);      return_ACPI_STATUS (Status);  } - - diff --git a/source/components/dispatcher/dsinit.c b/source/components/dispatcher/dsinit.c index 1c7ad8849258c..114404bb1c485 100644 --- a/source/components/dispatcher/dsinit.c +++ b/source/components/dispatcher/dsinit.c @@ -73,7 +73,7 @@ AcpiDsInitOneObject (   *   * RETURN:      Status   * - * DESCRIPTION: Callback from AcpiWalkNamespace.  Invoked for every object + * DESCRIPTION: Callback from AcpiWalkNamespace. Invoked for every object   *              within the namespace.   *   *              Currently, the only objects that require initialization are: @@ -234,5 +234,3 @@ AcpiDsInitializeObjects (      return_ACPI_STATUS (AE_OK);  } - - diff --git a/source/components/dispatcher/dsmethod.c b/source/components/dispatcher/dsmethod.c index 670382ac9bfb5..4f7901070282e 100644 --- a/source/components/dispatcher/dsmethod.c +++ b/source/components/dispatcher/dsmethod.c @@ -183,7 +183,7 @@ AcpiDsCreateMethodMutex (   *   * RETURN:      Status   * - * DESCRIPTION: Prepare a method for execution.  Parses the method if necessary, + * DESCRIPTION: Prepare a method for execution. Parses the method if necessary,   *              increments the thread count, and waits at the method semaphore   *              for clearance to execute.   * @@ -480,7 +480,7 @@ Cleanup:   * RETURN:      Status   *   * DESCRIPTION: Restart a method that was preempted by another (nested) method - *              invocation.  Handle the return value (if any) from the callee. + *              invocation. Handle the return value (if any) from the callee.   *   ******************************************************************************/ @@ -570,7 +570,7 @@ AcpiDsRestartControlMethod (   *   * RETURN:      None   * - * DESCRIPTION: Terminate a control method.  Delete everything that the method + * DESCRIPTION: Terminate a control method. Delete everything that the method   *              created, delete all locals and arguments, and delete the parse   *              tree if requested.   * @@ -722,5 +722,3 @@ AcpiDsTerminateControlMethod (      return_VOID;  } - - diff --git a/source/components/dispatcher/dsmthdat.c b/source/components/dispatcher/dsmthdat.c index b4509e7710216..aeabe740291f7 100644 --- a/source/components/dispatcher/dsmthdat.c +++ b/source/components/dispatcher/dsmthdat.c @@ -86,7 +86,7 @@ AcpiDsMethodDataGetType (   * RETURN:      Status   *   * DESCRIPTION: Initialize the data structures that hold the method's arguments - *              and locals.  The data struct is an array of namespace nodes for + *              and locals. The data struct is an array of namespace nodes for   *              each - this allows RefOf and DeRefOf to work properly for these   *              special data types.   * @@ -143,7 +143,7 @@ AcpiDsMethodDataInit (   *   * RETURN:      None   * - * DESCRIPTION: Delete method locals and arguments.  Arguments are only + * DESCRIPTION: Delete method locals and arguments. Arguments are only   *              deleted if this method was called from another method.   *   ******************************************************************************/ @@ -202,7 +202,7 @@ AcpiDsMethodDataDeleteAll (   *   * RETURN:      Status   * - * DESCRIPTION: Initialize arguments for a method.  The parameter list is a list + * DESCRIPTION: Initialize arguments for a method. The parameter list is a list   *              of ACPI operand objects, either null terminated or whose length   *              is defined by MaxParamCount.   * @@ -443,7 +443,7 @@ AcpiDsMethodDataGetValue (           * This means that either 1) The expected argument was           * not passed to the method, or 2) A local variable           * was referenced by the method (via the ASL) -         * before it was initialized.  Either case is an error. +         * before it was initialized. Either case is an error.           */          /* If slack enabled, init the LocalX/ArgX to an Integer of value zero */ @@ -508,7 +508,7 @@ AcpiDsMethodDataGetValue (   *   * RETURN:      None   * - * DESCRIPTION: Delete the entry at Opcode:Index.  Inserts + * DESCRIPTION: Delete the entry at Opcode:Index. Inserts   *              a null into the stack slot after the object is deleted.   *   ******************************************************************************/ @@ -573,7 +573,7 @@ AcpiDsMethodDataDeleteValue (   *   * RETURN:      Status   * - * DESCRIPTION: Store a value in an Arg or Local.  The ObjDesc is installed + * DESCRIPTION: Store a value in an Arg or Local. The ObjDesc is installed   *              as the new value for the Arg or Local and the reference count   *              for ObjDesc is incremented.   * @@ -621,7 +621,7 @@ AcpiDsStoreObjectToLocal (      /*       * If the reference count on the object is more than one, we must -     * take a copy of the object before we store.  A reference count +     * take a copy of the object before we store. A reference count       * of exactly 1 means that the object was just created during the       * evaluation of an expression, and we can safely use it since it       * is not used anywhere else. @@ -768,5 +768,3 @@ AcpiDsMethodDataGetType (      return_VALUE (Object->Type);  }  #endif - - diff --git a/source/components/dispatcher/dsobject.c b/source/components/dispatcher/dsobject.c index b3567766a2db4..24a5c09bc045c 100644 --- a/source/components/dispatcher/dsobject.c +++ b/source/components/dispatcher/dsobject.c @@ -296,7 +296,7 @@ AcpiDsBuildInternalBufferObj (      /*       * Second arg is the buffer data (optional) ByteList can be either -     * individual bytes or a string initializer.  In either case, a +     * individual bytes or a string initializer. In either case, a       * ByteList appears in the AML.       */      Arg = Op->Common.Value.Arg;         /* skip first arg */ @@ -590,7 +590,7 @@ AcpiDsCreateNode (      /*       * Because of the execution pass through the non-control-method -     * parts of the table, we can arrive here twice.  Only init +     * parts of the table, we can arrive here twice. Only init       * the named object node the first time through       */      if (AcpiNsGetAttachedObject (Node)) @@ -643,7 +643,7 @@ AcpiDsCreateNode (   * RETURN:      Status   *   * DESCRIPTION: Initialize a namespace object from a parser Op and its - *              associated arguments.  The namespace object is a more compact + *              associated arguments. The namespace object is a more compact   *              representation of the Op and its arguments.   *   ******************************************************************************/ @@ -863,5 +863,3 @@ AcpiDsInitObjectFromOp (      return_ACPI_STATUS (Status);  } - - diff --git a/source/components/dispatcher/dsopcode.c b/source/components/dispatcher/dsopcode.c index 6fd58d86e6ef6..c888dfd2bd7e4 100644 --- a/source/components/dispatcher/dsopcode.c +++ b/source/components/dispatcher/dsopcode.c @@ -806,4 +806,3 @@ AcpiDsEvalBankFieldOperands (      AcpiUtRemoveReference (OperandDesc);      return_ACPI_STATUS (Status);  } - diff --git a/source/components/dispatcher/dsutils.c b/source/components/dispatcher/dsutils.c index 66431aad53168..2cabdc680badf 100644 --- a/source/components/dispatcher/dsutils.c +++ b/source/components/dispatcher/dsutils.c @@ -64,7 +64,7 @@   *   * RETURN:      None.   * - * DESCRIPTION: Clear and remove a reference on an implicit return value.  Used + * DESCRIPTION: Clear and remove a reference on an implicit return value. Used   *              to delete "stale" return values (if enabled, the return value   *              from every operator is saved at least momentarily, in case the   *              parent method exits.) @@ -117,7 +117,7 @@ AcpiDsClearImplicitReturn (   *   * DESCRIPTION: Implements the optional "implicit return".  We save the result   *              of every ASL operator and control method invocation in case the - *              parent method exit.  Before storing a new return value, we + *              parent method exit. Before storing a new return value, we   *              delete the previous return value.   *   ******************************************************************************/ @@ -220,7 +220,7 @@ AcpiDsIsResultUsed (       *       * If there is no parent, or the parent is a ScopeOp, we are executing       * at the method level. An executing method typically has no parent, -     * since each method is parsed separately.  A method invoked externally +     * since each method is parsed separately. A method invoked externally       * via ExecuteControlMethod has a ScopeOp as the parent.       */      if ((!Op->Common.Parent) || @@ -245,7 +245,7 @@ AcpiDsIsResultUsed (      }      /* -     * Decide what to do with the result based on the parent.  If +     * Decide what to do with the result based on the parent. If       * the parent opcode will not use the result, delete the object.       * Otherwise leave it as is, it will be deleted when it is used       * as an operand later. @@ -290,7 +290,7 @@ AcpiDsIsResultUsed (          /*           * These opcodes allow TermArg(s) as operands and therefore -         * the operands can be method calls.  The result is used. +         * the operands can be method calls. The result is used.           */          goto ResultUsed; @@ -307,7 +307,7 @@ AcpiDsIsResultUsed (          {              /*               * These opcodes allow TermArg(s) as operands and therefore -             * the operands can be method calls.  The result is used. +             * the operands can be method calls. The result is used.               */              goto ResultUsed;          } @@ -354,9 +354,9 @@ ResultNotUsed:   *   * RETURN:      Status   * - * DESCRIPTION: Used after interpretation of an opcode.  If there is an internal + * DESCRIPTION: Used after interpretation of an opcode. If there is an internal   *              result descriptor, check if the parent opcode will actually use - *              this result.  If not, delete the result now so that it will + *              this result. If not, delete the result now so that it will   *              not become orphaned.   *   ******************************************************************************/ @@ -408,7 +408,7 @@ AcpiDsDeleteResultIfNotUsed (   *   * RETURN:      Status   * - * DESCRIPTION: Resolve all operands to their values.  Used to prepare + * DESCRIPTION: Resolve all operands to their values. Used to prepare   *              arguments to a control method invocation (a call from one   *              method to another.)   * @@ -427,7 +427,7 @@ AcpiDsResolveOperands (      /*       * Attempt to resolve each of the valid operands -     * Method arguments are passed by reference, not by value.  This means +     * Method arguments are passed by reference, not by value. This means       * that the actual objects are passed, not copies of the objects.       */      for (i = 0; i < WalkState->NumOperands; i++) @@ -494,7 +494,7 @@ AcpiDsClearOperands (   * RETURN:      Status   *   * DESCRIPTION: Translate a parse tree object that is an argument to an AML - *              opcode to the equivalent interpreter object.  This may include + *              opcode to the equivalent interpreter object. This may include   *              looking up a name or entering a new name into the internal   *              namespace.   * @@ -540,11 +540,11 @@ AcpiDsCreateOperand (          /* All prefixes have been handled, and the name is in NameString */          /* -         * Special handling for BufferField declarations.  This is a deferred +         * Special handling for BufferField declarations. This is a deferred           * opcode that unfortunately defines the field name as the last -         * parameter instead of the first.  We get here when we are performing +         * parameter instead of the first. We get here when we are performing           * the deferred execution, so the actual name of the field is already -         * in the namespace.  We don't want to attempt to look it up again +         * in the namespace. We don't want to attempt to look it up again           * because we may be executing in a different scope than where the           * actual opcode exists.           */ @@ -651,8 +651,8 @@ AcpiDsCreateOperand (              /*               * If the name is null, this means that this is an               * optional result parameter that was not specified -             * in the original ASL.  Create a Zero Constant for a -             * placeholder.  (Store to a constant is a Noop.) +             * in the original ASL. Create a Zero Constant for a +             * placeholder. (Store to a constant is a Noop.)               */              Opcode = AML_ZERO_OP;       /* Has no arguments! */ diff --git a/source/components/dispatcher/dswexec.c b/source/components/dispatcher/dswexec.c index 5732855bbeee8..0d38b739eee4d 100644 --- a/source/components/dispatcher/dswexec.c +++ b/source/components/dispatcher/dswexec.c @@ -223,7 +223,7 @@ Cleanup:   * RETURN:      Status   *   * DESCRIPTION: Descending callback used during the execution of control - *              methods.  This is where most operators and operands are + *              methods. This is where most operators and operands are   *              dispatched to the interpreter.   *   ****************************************************************************/ @@ -325,7 +325,7 @@ AcpiDsExecBeginOp (          {              /*               * Found a named object declaration during method execution; -             * we must enter this object into the namespace.  The created +             * we must enter this object into the namespace. The created               * object is temporary and will be deleted upon completion of               * the execution of this method.               * @@ -381,7 +381,7 @@ ErrorExit:   * RETURN:      Status   *   * DESCRIPTION: Ascending callback used during the execution of control - *              methods.  The only thing we really need to do here is to + *              methods. The only thing we really need to do here is to   *              notice the beginning of IF, ELSE, and WHILE blocks.   *   ****************************************************************************/ @@ -469,7 +469,7 @@ AcpiDsExecEndOp (          {              /*               * Dispatch the request to the appropriate interpreter handler -             * routine.  There is one routine per opcode "type" based upon the +             * routine. There is one routine per opcode "type" based upon the               * number of opcode arguments and return type.               */              Status = AcpiGbl_OpTypeDispatch[OpType] (WalkState); @@ -793,5 +793,3 @@ Cleanup:      WalkState->NumOperands = 0;      return_ACPI_STATUS (Status);  } - - diff --git a/source/components/dispatcher/dswload2.c b/source/components/dispatcher/dswload2.c index 90d85d6501da9..9c92e2ce2d80d 100644 --- a/source/components/dispatcher/dswload2.c +++ b/source/components/dispatcher/dswload2.c @@ -266,7 +266,7 @@ AcpiDsLoad2BeginOp (                  "Scope operator [%4.4s] (Cannot override)",                  AcpiUtGetTypeName (Node->Type), AcpiUtGetNodeName (Node))); -            return (AE_AML_OPERAND_TYPE); +            return_ACPI_STATUS (AE_AML_OPERAND_TYPE);          }          break; @@ -625,7 +625,7 @@ AcpiDsLoad2EndOp (                              RegionSpace, WalkState);                  if (ACPI_FAILURE (Status))                  { -                    return (Status); +                    return_ACPI_STATUS (Status);                  }                  AcpiExExitInterpreter (); @@ -758,4 +758,3 @@ Cleanup:      WalkState->NumOperands = 0;      return_ACPI_STATUS (Status);  } - diff --git a/source/components/dispatcher/dswscope.c b/source/components/dispatcher/dswscope.c index a59fdc9dca5c6..3bdfbed3e2141 100644 --- a/source/components/dispatcher/dswscope.c +++ b/source/components/dispatcher/dswscope.c @@ -235,5 +235,3 @@ AcpiDsScopeStackPop (      AcpiUtDeleteGenericState (ScopeInfo);      return_ACPI_STATUS (AE_OK);  } - - diff --git a/source/components/dispatcher/dswstate.c b/source/components/dispatcher/dswstate.c index dd11a18130296..0224021a864e6 100644 --- a/source/components/dispatcher/dswstate.c +++ b/source/components/dispatcher/dswstate.c @@ -385,7 +385,7 @@ AcpiDsObjStackPush (   *   * RETURN:      Status   * - * DESCRIPTION: Pop this walk's object stack.  Objects on the stack are NOT + * DESCRIPTION: Pop this walk's object stack. Objects on the stack are NOT   *              deleted by this routine.   *   ******************************************************************************/ @@ -549,7 +549,7 @@ AcpiDsPushWalkState (   * RETURN:      A WalkState object popped from the thread's stack   *   * DESCRIPTION: Remove and return the walkstate object that is at the head of - *              the walk stack for the given walk list.  NULL indicates that + *              the walk stack for the given walk list. NULL indicates that   *              the list is empty.   *   ******************************************************************************/ @@ -594,7 +594,7 @@ AcpiDsPopWalkState (   *   * RETURN:      Pointer to the new walk state.   * - * DESCRIPTION: Allocate and initialize a new walk state.  The current walk + * DESCRIPTION: Allocate and initialize a new walk state. The current walk   *              state is set to this new state.   *   ******************************************************************************/ @@ -730,7 +730,7 @@ AcpiDsInitAmlWalk (          /*           * Setup the current scope.           * Find a Named Op that has a namespace node associated with it. -         * search upwards from this Op.  Current scope is the first +         * search upwards from this Op. Current scope is the first           * Op with a namespace node.           */          ExtraOp = ParserState->StartOp; @@ -790,14 +790,14 @@ AcpiDsDeleteWalkState (      if (!WalkState)      { -        return; +        return_VOID;      }      if (WalkState->DescriptorType != ACPI_DESC_TYPE_WALK)      {          ACPI_ERROR ((AE_INFO, "%p is not a valid walk state",              WalkState)); -        return; +        return_VOID;      }      /* There should not be any open scopes */ @@ -842,5 +842,3 @@ AcpiDsDeleteWalkState (      ACPI_FREE (WalkState);      return_VOID;  } - - | 
