diff options
author | Dmytro Laktyushkin <Dmytro.Laktyushkin@amd.com> | 2018-08-02 11:43:36 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-08-21 14:16:28 -0500 |
commit | 16747b21098505bea3b7bc7009d8e16921a7ca65 (patch) | |
tree | 3303f13706bcc57424c495ec7b6b006a6869a0f6 | |
parent | 8f7040b8f252fae4ca5d2453e9f50b78cf6b834f (diff) | |
download | linux-16747b21098505bea3b7bc7009d8e16921a7ca65.tar.gz linux-16747b21098505bea3b7bc7009d8e16921a7ca65.tar.bz2 linux-16747b21098505bea3b7bc7009d8e16921a7ca65.zip |
drm/amd/display: fix dp_ss_control vbios flag parsing
dp_ss_control = 0 means ss is off, we had a typo where
we would double not dp_ss_control while setting dp_ss_off
flag
Signed-off-by: Dmytro Laktyushkin <Dmytro.Laktyushkin@amd.com>
Reviewed-by: Eric Bernstein <Eric.Bernstein@amd.com>
Acked-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/core/dc_link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link.c b/drivers/gpu/drm/amd/display/dc/core/dc_link.c index 326b3e99b7e4..222ff7c1bf4f 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc_link.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc_link.c @@ -1040,7 +1040,7 @@ static bool construct( link->link_id = bios->funcs->get_connector_id(bios, init_params->connector_index); if (dc_ctx->dc_bios->integrated_info) - link->dp_ss_off = !!dc_ctx->dc_bios->integrated_info->dp_ss_control; + link->dp_ss_off = !dc_ctx->dc_bios->integrated_info->dp_ss_control; if (link->link_id.type != OBJECT_TYPE_CONNECTOR) { dm_error("%s: Invalid Connector ObjectID from Adapter Service for connector index:%d! type %d expected %d\n", |