drm/i915: Free the returned object of acpi_evaluate_dsm()
authorZenghui Yu <yuzenghui@huawei.com>
Mon, 6 Sep 2021 03:35:41 +0000 (11:35 +0800)
committerJani Nikula <jani.nikula@intel.com>
Wed, 13 Oct 2021 10:41:16 +0000 (13:41 +0300)
commit82a59c7f456db9f2874e9f1e9cb4cc19e71e95c5
tree7b661e8e40e554a09c2d45d3d112c900a8887266
parentaf628cdd64e11f03181a5a19645768ed4687bda4
drm/i915: Free the returned object of acpi_evaluate_dsm()

As per the comment on top of acpi_evaluate_dsm():

| * Evaluate device's _DSM method with specified GUID, revision id and
| * function number. Caller needs to free the returned object.

We should free the returned object of acpi_evaluate_dsm() to avoid memory
leakage. Otherwise the kmemleak splat will be triggered at boot time (if we
compile kernel with CONFIG_DEBUG_TEST_DRIVER_REMOVE=y).

Fixes: 8e55f99c510f ("drm/i915: Invoke another _DSM to enable MUX on HP Workstation laptops")
Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210906033541.862-1-yuzenghui@huawei.com
(cherry picked from commit 149ac2e7ae1845191bd18b66a725392ac83a0c47)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/display/intel_acpi.c