diff options
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index fd8139ca629a..265f90afcac4 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -64,7 +64,12 @@ struct drm_mode_object { | |||
64 | #define DRM_OBJECT_MAX_PROPERTY 24 | 64 | #define DRM_OBJECT_MAX_PROPERTY 24 |
65 | struct drm_object_properties { | 65 | struct drm_object_properties { |
66 | int count; | 66 | int count; |
67 | uint32_t ids[DRM_OBJECT_MAX_PROPERTY]; | 67 | /* NOTE: if we ever start dynamically destroying properties (ie. |
68 | * not at drm_mode_config_cleanup() time), then we'd have to do | ||
69 | * a better job of detaching property from mode objects to avoid | ||
70 | * dangling property pointers: | ||
71 | */ | ||
72 | struct drm_property *properties[DRM_OBJECT_MAX_PROPERTY]; | ||
68 | uint64_t values[DRM_OBJECT_MAX_PROPERTY]; | 73 | uint64_t values[DRM_OBJECT_MAX_PROPERTY]; |
69 | }; | 74 | }; |
70 | 75 | ||