diff options
author | Rex Zhu <Rex.Zhu@amd.com> | 2017-05-31 19:53:04 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-06-01 16:00:20 -0400 |
commit | 117a48a7add55e6d9e84a23fe585c6a648096a64 (patch) | |
tree | a09606da96c65164d728c3fa572aa1deb4f85a87 | |
parent | 040cd2d1f5037be4a1cfe4f4e4b3be248707dc0c (diff) | |
download | linux-117a48a7add55e6d9e84a23fe585c6a648096a64.tar.bz2 |
drm/amd/powerplay: enable CKS by default on vega10.
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c index 971f78983187..43812d2c8464 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c @@ -124,7 +124,7 @@ static void vega10_set_default_registry_data(struct pp_hwmgr *hwmgr) } data->registry_data.clock_stretcher_support = - hwmgr->feature_mask & PP_CLOCK_STRETCH_MASK ? false : true; + hwmgr->feature_mask & PP_CLOCK_STRETCH_MASK ? true : false; data->registry_data.ulv_support = hwmgr->feature_mask & PP_ULV_MASK ? true : false; |