drm/amdgpu/powerplay/smu7: fix unintialized data usage
[linux-block.git] / drivers / gpu / drm / amd / powerplay / hwmgr / smu7_hwmgr.c
index 75854021f40337aa43c8f302dc880832b16167b3..51fb86f20c2135e64a0b2955a9402100c1cc8e68 100644 (file)
@@ -2133,9 +2133,11 @@ static int smu7_patch_limits_vddc(struct pp_hwmgr *hwmgr,
        struct smu7_hwmgr *data = (struct smu7_hwmgr *)(hwmgr->backend);
 
        if (tab) {
+               vddc = tab->vddc;
                smu7_patch_ppt_v0_with_vdd_leakage(hwmgr, &vddc,
                                                   &data->vddc_leakage);
                tab->vddc = vddc;
+               vddci = tab->vddci;
                smu7_patch_ppt_v0_with_vdd_leakage(hwmgr, &vddci,
                                                   &data->vddci_leakage);
                tab->vddci = vddci;