diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2017-03-09 15:56:59 +0900 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2017-03-10 11:45:32 +0900 |
commit | 3a8582944ed3fef1b75f8871489e6e19963e2ea6 (patch) | |
tree | 178b5cf2f9aba909dc259fcfe77450709b453fba /src | |
parent | 82b15a4da156e18da4c8fc0093500c32b549e487 (diff) |
Pass TRUE to drmmode_set_desired_modes the first time for GPU screens
This is the only place we call drmmode_set_desired_modes for GPU screens
during server startup. Without this change, the display outputs of
secondary GPUs may stay on even while Xorg isn't using them.
(Ported from radeon commit 9a71445094b728f3d78db8f6808b4782ee19a453)
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/amdgpu_kms.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amdgpu_kms.c b/src/amdgpu_kms.c index 3deaef7..4821e93 100644 --- a/src/amdgpu_kms.c +++ b/src/amdgpu_kms.c @@ -243,7 +243,8 @@ static Bool AMDGPUCreateScreenResources_KMS(ScreenPtr pScreen) } } - if (!drmmode_set_desired_modes(pScrn, &info->drmmode, FALSE)) + if (!drmmode_set_desired_modes(pScrn, &info->drmmode, + amdgpu_is_gpu_screen(pScreen))) return FALSE; drmmode_uevent_init(pScrn, &info->drmmode); |