diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2015-11-25 21:04:42 +0000 | 
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2015-11-25 21:04:42 +0000 | 
| commit | b9098066cd6284319bca922f13e59517f774a103 (patch) | |
| tree | f01fd6c9053cb01ed84c00cb42ee789adafceaf5 /source/components/parser/psobject.c | |
| parent | 1e24cf365bc9c8df179b145c90d52852724e54ee (diff) | |
Notes
Diffstat (limited to 'source/components/parser/psobject.c')
| -rw-r--r-- | source/components/parser/psobject.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/source/components/parser/psobject.c b/source/components/parser/psobject.c index b9d8e8ce69bb..8acde2e16133 100644 --- a/source/components/parser/psobject.c +++ b/source/components/parser/psobject.c @@ -109,7 +109,7 @@ AcpiPsGetAmlOpcode (          if (WalkState->PassNumber == 2)          {              AmlOffset = (UINT32) ACPI_PTR_DIFF (WalkState->Aml, -                            WalkState->ParserState.AmlStart); +                WalkState->ParserState.AmlStart);              ACPI_ERROR ((AE_INFO,                  "Unknown opcode 0x%.2X at table offset 0x%.4X, ignoring", @@ -151,7 +151,8 @@ AcpiPsGetAmlOpcode (          /* Found opcode info, this is a normal opcode */ -        WalkState->ParserState.Aml += AcpiPsGetOpcodeSize (WalkState->Opcode); +        WalkState->ParserState.Aml += +            AcpiPsGetOpcodeSize (WalkState->Opcode);          WalkState->ArgTypes = WalkState->OpInfo->ParseArgs;          break;      } @@ -201,7 +202,7 @@ AcpiPsBuildNamedOp (            (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) != ARGP_NAME))      {          Status = AcpiPsGetNextArg (WalkState, &(WalkState->ParserState), -                    GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); +            GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg);          if (ACPI_FAILURE (Status))          {              return_ACPI_STATUS (Status); | 
