diff options
author | emersion <contact@emersion.fr> | 2018-10-04 14:11:37 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-10-04 21:54:27 +0200 |
commit | f5a147b739ebd33bc61996a179801775192b19ce (patch) | |
tree | bb3f31e810dd5592a03be15dec8eda635f1a0cb0 /include/backend/drm | |
parent | 43af104fa3939234794da3a15bca102138c3aa70 (diff) |
backend/drm: add support for the link-status property
Diffstat (limited to 'include/backend/drm')
-rw-r--r-- | include/backend/drm/properties.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/backend/drm/properties.h b/include/backend/drm/properties.h index 5b17e77e..321b4492 100644 --- a/include/backend/drm/properties.h +++ b/include/backend/drm/properties.h @@ -14,12 +14,13 @@ union wlr_drm_connector_props { struct { uint32_t edid; uint32_t dpms; + uint32_t link_status; // not guaranteed to exist // atomic-modesetting only uint32_t crtc_id; }; - uint32_t props[3]; + uint32_t props[4]; }; union wlr_drm_crtc_props { |