diff options
Diffstat (limited to 'source/components/utilities/utstate.c')
-rw-r--r-- | source/components/utilities/utstate.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/components/utilities/utstate.c b/source/components/utilities/utstate.c index 49fc8e9b8df16..ad07a4a74ac8a 100644 --- a/source/components/utilities/utstate.c +++ b/source/components/utilities/utstate.c @@ -278,6 +278,7 @@ AcpiUtCreatePkgState ( State->Pkg.DestObject = ExternalObject; State->Pkg.Index= Index; State->Pkg.NumPackages = 1; + return (State); } @@ -317,6 +318,7 @@ AcpiUtCreateControlState ( State->Common.DescriptorType = ACPI_DESC_TYPE_STATE_CONTROL; State->Common.State = ACPI_CONTROL_CONDITIONAL_EXECUTING; + return (State); } @@ -347,5 +349,6 @@ AcpiUtDeleteGenericState ( { (void) AcpiOsReleaseObject (AcpiGbl_StateCache, State); } + return; } |