diff --git a/src/amdgpu_kms.c b/src/amdgpu_kms.c index c466362..7bbef32 100644 --- a/src/amdgpu_kms.c +++ b/src/amdgpu_kms.c @@ -798,6 +798,10 @@ Bool AMDGPUPreInit_KMS(ScrnInfoPtr pScrn, int flags) goto fail; } + /* Get ScreenInit function */ + if (!xf86LoadSubModule(pScrn, "fb")) + return FALSE; + if (!AMDGPUPreInitAccel_KMS(pScrn)) goto fail; @@ -883,10 +887,6 @@ Bool AMDGPUPreInit_KMS(ScrnInfoPtr pScrn, int flags) /* Set display resolution */ xf86SetDpi(pScrn, 0, 0); - /* Get ScreenInit function */ - if (!xf86LoadSubModule(pScrn, "fb")) - return FALSE; - if (!xf86SetGamma(pScrn, zeros)) return FALSE;