Skip to content

Commit 376c1fc

Browse files
Timur Kristófgregkh
authored andcommitted
drm/amd/pm/ci: Fix powertune defaults for Hawaii 0x67B0
[ Upstream commit d784759 ] There is no AMD GPU with the ID 0x66B0, this looks like a typo. It should be 0x67B0 which is actually part of the PCI ID list, and should use the Hawaii XT powertune defaults according to the old radeon driver. Fixes: 9f4b354 ("drm/amd/powerplay: add CI asics support to smumgr (v3)") Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent b38a125 commit 376c1fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/amd/pm/powerplay/smumgr/ci_smumgr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ static void ci_initialize_power_tune_defaults(struct pp_hwmgr *hwmgr)
245245
smu_data->power_tune_defaults = &defaults_hawaii_pro;
246246
break;
247247
case 0x67B8:
248-
case 0x66B0:
248+
case 0x67B0:
249249
smu_data->power_tune_defaults = &defaults_hawaii_xt;
250250
break;
251251
case 0x6640:

0 commit comments

Comments
 (0)