summaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2018-11-02 10:54:27 -0500
committerAlex Deucher <alexander.deucher@amd.com>2018-11-06 16:46:12 -0500
commit5822e9539dc11721b53d74accd4c091b982011d0 (patch)
tree634c39126fdceb6c480e6c0eb79fd7c56461b597 /drivers/gpu
parent04b94af4e348acc52546b9b19c933575f26589a1 (diff)
downloadlinux-stable-5822e9539dc11721b53d74accd4c091b982011d0.tar.gz
linux-stable-5822e9539dc11721b53d74accd4c091b982011d0.tar.bz2
linux-stable-5822e9539dc11721b53d74accd4c091b982011d0.zip
drm/amdgpu/display/dce11: only enable FBC when selected
Causes a black screen on a Stoney laptop. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=108577 Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/amd/display/dc/dce110/dce110_resource.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dce110/dce110_resource.c b/drivers/gpu/drm/amd/display/dc/dce110/dce110_resource.c
index e3624ca24574..7c9fd9052ee2 100644
--- a/drivers/gpu/drm/amd/display/dc/dce110/dce110_resource.c
+++ b/drivers/gpu/drm/amd/display/dc/dce110/dce110_resource.c
@@ -1362,7 +1362,8 @@ static bool construct(
pool->base.sw_i2cs[i] = NULL;
}
- dc->fbc_compressor = dce110_compressor_create(ctx);
+ if (dc->config.fbc_support)
+ dc->fbc_compressor = dce110_compressor_create(ctx);
if (!underlay_create(ctx, &pool->base))
goto res_create_fail;