projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d06b7e1
)
drm/amdgpu/virtual_dce: add case for topaz for disable_dce
author
Alex Deucher
<
[email protected]
>
Mon, 8 Aug 2016 18:40:04 +0000
(14:40 -0400)
committer
Alex Deucher
<
[email protected]
>
Mon, 8 Aug 2016 18:40:04 +0000
(14:40 -0400)
This asic has no DCE block. Also clarify the error message
for unmatched chips.
Signed-off-by: Alex Deucher <
[email protected]
>
drivers/gpu/drm/amd/amdgpu/dce_virtual.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/dce_virtual.c
b/drivers/gpu/drm/amd/amdgpu/dce_virtual.c
index 4c8ca58a3f94fac55d0ca708e6ec4bce76b83a4c..5499693f1dcf767d9751b786577db0225f665af7 100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/dce_virtual.c
+++ b/
drivers/gpu/drm/amd/amdgpu/dce_virtual.c
@@
-124,8
+124,11
@@
void dce_virtual_stop_mc_access(struct amdgpu_device *adev,
case CHIP_POLARIS10:
dce_v11_0_disable_dce(adev);
break;
+ case CHIP_TOPAZ:
+ /* no DCE */
+ return;
default:
- DRM_ERROR("
U
supported ASIC type: 0x%X\n", adev->asic_type);
+ DRM_ERROR("
Virtual display un
supported ASIC type: 0x%X\n", adev->asic_type);
}
return;