1
0
Fork 0

drm/amd/display: Free gamma after calculating legacy transfer function

[ Upstream commit 0e3a7c2ec9 ]

[Why]
We're leaking memory by not freeing the gamma used to calculate the
transfer function for legacy gamma.

[How]
Release the gamma after we're done with it.

Signed-off-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Reviewed-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
5.4-rM2-2.2.x-imx-squashed
Nicholas Kazlauskas 2019-10-11 12:26:10 -04:00 committed by Greg Kroah-Hartman
parent 252e8b514a
commit 50afba5c12
1 changed files with 2 additions and 0 deletions

View File

@ -210,6 +210,8 @@ static int __set_legacy_tf(struct dc_transfer_func *func,
res = mod_color_calculate_regamma_params(func, gamma, true, has_rom,
NULL);
dc_gamma_release(&gamma);
return res ? 0 : -ENOMEM;
}