Skip to content

Commit 790243d

Browse files
sandy-8925alexdeucher
authored andcommitted
drm/amdgpu: Replace invalid device ID with a valid device ID
Initializes Powertune data for a specific Hawaii card by fixing what looks like a typo in the code. The device ID 66B1 is not a supported device ID for this driver, and is not mentioned elsewhere. 67B1 is a valid device ID, and is a Hawaii Pro GPU. I have tested on my R9 390 which has device ID 67B1, and it works fine without problems. Signed-off-by: Sandeep Raghuraman <[email protected]> Signed-off-by: Alex Deucher <[email protected]> Cc: [email protected]
1 parent 43a5627 commit 790243d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ static void ci_initialize_power_tune_defaults(struct pp_hwmgr *hwmgr)
239239

240240
switch (dev_id) {
241241
case 0x67BA:
242-
case 0x66B1:
242+
case 0x67B1:
243243
smu_data->power_tune_defaults = &defaults_hawaii_pro;
244244
break;
245245
case 0x67B8:

0 commit comments

Comments
 (0)