From: Alex Deucher Date: Tue, 1 Jul 2014 16:11:31 +0000 (-0400) Subject: drm/radeon/dpm: fix vddci setup typo on cayman X-Git-Tag: v4.14-rc1~7291^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0880e87c1fd038b84498944f52e52c3e86ebe59;p=platform%2Fkernel%2Flinux-rpi.git drm/radeon/dpm: fix vddci setup typo on cayman We were using the vddc mask rather than the vddci mask. Bug: https://bugzilla.kernel.org/show_bug.cgi?id=79071 May also fix: https://bugs.freedesktop.org/show_bug.cgi?id=69723 Noticed by: Dieter Nützel Signed-off-by: Alex Deucher Cc: stable@vger.kernel.org --- diff --git a/drivers/gpu/drm/radeon/ni_dpm.c b/drivers/gpu/drm/radeon/ni_dpm.c index 004c931..01fc488 100644 --- a/drivers/gpu/drm/radeon/ni_dpm.c +++ b/drivers/gpu/drm/radeon/ni_dpm.c @@ -1315,7 +1315,7 @@ static void ni_populate_smc_voltage_tables(struct radeon_device *rdev, table->voltageMaskTable.highMask[NISLANDS_SMC_VOLTAGEMASK_VDDCI] = 0; table->voltageMaskTable.lowMask[NISLANDS_SMC_VOLTAGEMASK_VDDCI] = - cpu_to_be32(eg_pi->vddc_voltage_table.mask_low); + cpu_to_be32(eg_pi->vddci_voltage_table.mask_low); } }