[PATCH] drm/amd/pm: fix smu_v11_0_init_power power_context allocation
Alex Deucher
alexdeucher at gmail.com
Fri Nov 13 20:22:58 UTC 2020
On Thu, Nov 12, 2020 at 5:23 PM Ryan Taylor <Ryan.Taylor at amd.com> wrote:
>
> Allocate smu_power->power_context to size of smu_11_0_power_context instead of
> smu_11_0_dpm_context.
>
> Signed-off-by: Ryan Taylor <Ryan.Taylor at amd.com>
> Reviewed-by: Alex Deucher <alexander.deucher at amd.com>
> Reviewed-by: Evan Quan <evan.quan at amd.com>
Looks good to me.
Thanks!
Alex
> ---
> drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c
> index b880c72c322c..9ec5e30edbee 100644
> --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c
> +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c
> @@ -469,11 +469,11 @@ int smu_v11_0_init_power(struct smu_context *smu)
> {
> struct smu_power_context *smu_power = &smu->smu_power;
>
> - smu_power->power_context = kzalloc(sizeof(struct smu_11_0_dpm_context),
> + smu_power->power_context = kzalloc(sizeof(struct smu_11_0_power_context),
> GFP_KERNEL);
> if (!smu_power->power_context)
> return -ENOMEM;
> - smu_power->power_context_size = sizeof(struct smu_11_0_dpm_context);
> + smu_power->power_context_size = sizeof(struct smu_11_0_power_context);
>
> return 0;
> }
> --
> 2.29.2
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
More information about the amd-gfx
mailing list