On 1/11/2025 10:58 AM, Asad Kamal wrote: > Fill ip version in pm_metrics for SMU v13.0.12 > > v2: Remove ip version check(Lijo) > > Signed-off-by: Asad Kamal <asad.kamal@xxxxxxx> > Reviewed-by: Hawking Zhang <Hawking.Zhang@xxxxxxx> Reviewed-by: Lijo Lazar <lijo.lazar@xxxxxxx> Thanks, Lijo > --- > drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c > index 8ab30b2f7119..f358a8abe91e 100644 > --- a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c > +++ b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c > @@ -599,10 +599,8 @@ static ssize_t smu_v13_0_6_get_pm_metrics(struct smu_context *smu, > > memset(&pm_metrics->common_header, 0, > sizeof(pm_metrics->common_header)); > - if (amdgpu_ip_version(smu->adev, MP1_HWIP, 0) == IP_VERSION(13, 0, 6)) > - pm_metrics->common_header.mp1_ip_discovery_version = IP_VERSION(13, 0, 6); > - if (amdgpu_ip_version(smu->adev, MP1_HWIP, 0) == IP_VERSION(13, 0, 14)) > - pm_metrics->common_header.mp1_ip_discovery_version = IP_VERSION(13, 0, 14); > + pm_metrics->common_header.mp1_ip_discovery_version = > + amdgpu_ip_version(smu->adev, MP1_HWIP, 0); > pm_metrics->common_header.pmfw_version = pmfw_version; > pm_metrics->common_header.pmmetrics_version = table_version; > pm_metrics->common_header.structure_size =