mirror of https://gitee.com/openkylin/linux.git
drm/radeon: Set vblank_disable_allowed = true
Without this, since the conversion from drm_vblank_pre/post_modeset to drm_vblank_on/off, the vblank interrupt could never be disabled after userspace triggered enabling it. Signed-off-by: Michel Dänzer <michel.daenzer@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
e0c771637f
commit
978ccad69f
|
@ -291,6 +291,8 @@ int radeon_irq_kms_init(struct radeon_device *rdev)
|
||||||
if (r) {
|
if (r) {
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
rdev->ddev->vblank_disable_allowed = true;
|
||||||
|
|
||||||
/* enable msi */
|
/* enable msi */
|
||||||
rdev->msi_enabled = 0;
|
rdev->msi_enabled = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue