Commit 2579de43 authored by Alex Deucher's avatar Alex Deucher

drm/amdgpu/virtual_dce: add case for topaz for disable_dce

This asic has no DCE block.  Also clarify the error message
for unmatched chips.
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent d06b7e1c
...@@ -124,8 +124,11 @@ void dce_virtual_stop_mc_access(struct amdgpu_device *adev, ...@@ -124,8 +124,11 @@ void dce_virtual_stop_mc_access(struct amdgpu_device *adev,
case CHIP_POLARIS10: case CHIP_POLARIS10:
dce_v11_0_disable_dce(adev); dce_v11_0_disable_dce(adev);
break; break;
case CHIP_TOPAZ:
/* no DCE */
return;
default: default:
DRM_ERROR("Usupported ASIC type: 0x%X\n", adev->asic_type); DRM_ERROR("Virtual display unsupported ASIC type: 0x%X\n", adev->asic_type);
} }
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment