diff options
author | Daniel Stone <daniels@collabora.com> | 2017-04-07 14:27:58 +0100 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2017-04-10 17:30:14 +0900 |
commit | d6c29250dbc293c932ca14997eb23399610b106d (patch) | |
tree | 5110de02743641d8b971dee513ea8553dfbc7b36 /src | |
parent | 23985d3ef3150ef8cad30b92ef0cd8ba6cfa1f4d (diff) |
Set correct DRM event context version
DRM_EVENT_CONTEXT_VERSION is the latest context version supported by
whatever version of libdrm is present. We were blindly asserting we
supported whatever version that may be, even if we actually didn't.
Set the version as 2, which should be bumped only with the appropriate
version checks.
Signed-off-by: Daniel Stone <daniels@collabora.com>
(Ported from xserver commit 0c8e6ed85810e96d84173a52d628863802a78d82)
v2: Remove second paragraph of commit log, we always initialize
page_flip_handler2 = NULL (Emil Velikov)
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com> # v1
Diffstat (limited to 'src')
-rw-r--r-- | src/drmmode_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drmmode_display.c b/src/drmmode_display.c index ab11583a..9911c0a6 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -2538,7 +2538,7 @@ Bool drmmode_pre_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int cpp) xf86InitialConfiguration(pScrn, TRUE); - drmmode->event_context.version = DRM_EVENT_CONTEXT_VERSION; + drmmode->event_context.version = 2; drmmode->event_context.vblank_handler = radeon_drm_queue_handler; drmmode->event_context.page_flip_handler = radeon_drm_queue_handler; |