ACPI: bus: Rename label and use ACPI_FREE() in acpi_run_osc()

Use ACPI_FREE() for freeing an object coming from acpi_eval_osc()
and rename the "out_free" to "out" because it does not involve
kfree() any more.

No intentional functional impact.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>
Link: https://patch.msgid.link/8682086.NyiUUSuA9g@rafael.j.wysocki
This commit is contained in:
Rafael J. Wysocki 2025-12-22 20:18:40 +01:00
parent d179ae1f06
commit 5ada805104

View File

@ -308,19 +308,19 @@ acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context)
if (acpi_osc_error_check(handle, &guid, context->rev, &context->cap, retbuf)) {
status = AE_ERROR;
goto out_kfree;
goto out;
}
context->ret.length = out_obj->buffer.length;
context->ret.pointer = kmemdup(retbuf, context->ret.length, GFP_KERNEL);
if (!context->ret.pointer) {
status = AE_NO_MEMORY;
goto out_kfree;
goto out;
}
status = AE_OK;
out_kfree:
kfree(output.pointer);
out:
ACPI_FREE(out_obj);
return status;
}
EXPORT_SYMBOL(acpi_run_osc);